You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dongfeng-pay/jhagent/main.go

32 lines
530 B
Go

5 years ago
package main
import (
_ "dongfeng-pay/jhagent/routers"
"dongfeng-pay/jhagent/sys"
"dongfeng-pay/jhagent/utils"
"dongfeng-pay/service/service_init"
5 years ago
"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()
}