modify dictory

This commit is contained in:
wangchuxiao
2023-03-06 11:09:56 +08:00
parent 9945a2f8dc
commit df6eb2e6f1
25 changed files with 0 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
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())
}
}