11 lines
186 B
Go
Raw Permalink Normal View History

2024-03-11 11:30:36 +08:00
package queues
// StartConsumer
// @description: 启动消费者
func StartConsumer() {
// 同步配置文件
2024-03-11 11:30:36 +08:00
go asyncWireguardConfigFile()
// 离线监听
go offlineMonitoring()
2024-03-11 11:30:36 +08:00
}