dongfeng-pay/agent/main.go

14 lines
179 B
Go
Raw Normal View History

2021-04-27 15:33:49 +08:00
package main
import (
_ "agent/models"
_ "agent/routers"
2021-11-18 13:51:06 +08:00
"github.com/beego/beego/v2/server/web"
2021-04-27 15:33:49 +08:00
)
func main() {
2021-11-18 13:51:06 +08:00
web.BConfig.WebConfig.Session.SessionOn = true
web.Run()
2021-04-27 15:33:49 +08:00
}