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/gateway/main.go

14 lines
224 B
Go

package main
import (
_ "gateway/models"
_ "gateway/supplier"
beego "github.com/beego/beego/v2/server/web"
)
func main() {
//启动订单查询消费者
beego.BConfig.WebConfig.Session.SessionOn = true
beego.Run()
}