mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-14 22:49:21 +08:00
14 lines
224 B
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()
|
||
|
}
|