mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-29 22:11:46 +08:00
13 lines
156 B
Go
13 lines
156 B
Go
package main
|
|
|
|
import (
|
|
"Open_IM/internal/cron_task"
|
|
"fmt"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println(time.Now(), "start cronTask")
|
|
cronTask.StartCronTask()
|
|
}
|