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