package main import ( ct "crontab/init" "crontab/task" ) func main() { //是否开启定时任务 if ct.Switch { go task.VoiceConversionCron() select {} } }