mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-13 14:09:20 +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()
|
||
|
}
|
||
|
|