Files
mir-godot/service/framework/framework.go
MakerYang a902dd3de7 new
2024-08-06 18:30:21 +08:00

21 lines
416 B
Go

/**
#*****************************************************************************
# @author MakerYang
# @site mir2.makeryang.com
#*****************************************************************************
*/
package Framework
import (
"Service/framework/config"
"Service/framework/database"
"Service/framework/package/crontab"
)
func Init() {
Config.Setup()
Database.Init()
CrontabPackage.Start()
}