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/agent/main.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()
}