jl-iot/service/iot_qc_service.go

14 lines
179 B
Go

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