mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-11 04:59:21 +08:00
32 lines
530 B
Go
32 lines
530 B
Go
package main
|
|
|
|
import (
|
|
_ "dongfeng-pay/jhagent/routers"
|
|
"dongfeng-pay/jhagent/sys"
|
|
"dongfeng-pay/jhagent/utils"
|
|
"dongfeng-pay/service/service_init"
|
|
"github.com/astaxie/beego"
|
|
"github.com/astaxie/beego/orm"
|
|
)
|
|
|
|
func init() {
|
|
// 初始化日志
|
|
utils.InitLogs()
|
|
|
|
// 初始化数据库
|
|
service_init.InitAll()
|
|
|
|
// 初始化Session
|
|
sys.InitSession()
|
|
|
|
// 如果是开发模式,则显示命令信息
|
|
isDev := !(beego.AppConfig.String("runmode") != "dev")
|
|
if isDev {
|
|
orm.Debug = isDev
|
|
}
|
|
}
|
|
|
|
func main() {
|
|
beego.Run()
|
|
}
|