14 lines
179 B
Go
14 lines
179 B
Go
package service
|
|
|
|
type iotQcService struct {
|
|
tasks []IScheduledTask
|
|
}
|
|
|
|
var iqcs *iotQcService
|
|
|
|
func StartIotQcService() {
|
|
iqcs = &iotQcService{
|
|
tasks: []IScheduledTask{},
|
|
}
|
|
}
|