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