mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
19 lines
295 B
Go
19 lines
295 B
Go
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())
|
|
}
|
|
}
|