mirror of
https://github.com/openimsdk/open-im-server.git
synced 2026-05-02 16:15:59 +08:00
12 lines
141 B
Go
12 lines
141 B
Go
|
|
package cron_task
|
||
|
|
|
||
|
|
import (
|
||
|
|
"Open_IM/internal/cron_task"
|
||
|
|
"fmt"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
fmt.Println("start cronTask")
|
||
|
|
cronTask.StartCronTask()
|
||
|
|
}
|