You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Open-IM-Server/cmd/crontask/main.go

19 lines
293 B

package main
import (
"OpenIM/internal/tools"
"OpenIM/pkg/common/config"
"fmt"
"time"
)
func main() {
fmt.Println(time.Now(), "start cronTask")
if err := config.InitConfig(); err != nil {
panic(err.Error())
}
if err := tools.StartCronTask(); err != nil {
panic(err.Error())
}
}