mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-11 04:59:21 +08:00
14 lines
189 B
Go
14 lines
189 B
Go
package main
|
|
|
|
import (
|
|
_ "agent/models"
|
|
_ "agent/routers"
|
|
beego "github.com/beego/beego/v2/server/web"
|
|
)
|
|
|
|
func main() {
|
|
beego.BConfig.WebConfig.Session.SessionOn = true
|
|
beego.Run()
|
|
}
|
|
|