mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
12 lines
136 B
Go
12 lines
136 B
Go
package main
|
|
|
|
import (
|
|
"Open_IM/internal/cron_task"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
fmt.Println("start cronTask")
|
|
cronTask.StartCronTask()
|
|
}
|