jl-iot/service/iot_qc_service.go
walker 120fb4c5fb 数据包移动到dto包下
定时任务接口名称调整
新建Modbus驱采服务接口调整
添加iot驱采服务定义和启动,初步实现
2023-12-20 14:05:07 +08:00

14 lines
179 B
Go

package service
type iotQcService struct {
tasks []IScheduledTask
}
var iqcs *iotQcService
func StartIotQcService() {
iqcs = &iotQcService{
tasks: []IScheduledTask{},
}
}