mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-05 20:11:14 +08:00
14 lines
274 B
Go
14 lines
274 B
Go
package main
|
|
|
|
import (
|
|
"github.com/OpenIMSDK/Open-IM-Server/internal/tools"
|
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/cmd"
|
|
)
|
|
|
|
func main() {
|
|
cronTaskCmd := cmd.NewCronTaskCmd()
|
|
if err := cronTaskCmd.Exec(tools.StartCronTask); err != nil {
|
|
panic(err.Error())
|
|
}
|
|
}
|