dongfeng-pay/jhgateway/main.go

15 lines
262 B
Go
Raw Normal View History

2019-12-19 14:47:58 +08:00
package main
import (
"github.com/astaxie/beego"
2019-12-19 16:43:20 +08:00
_ "dongfeng-pay/jhgateway/routers"
"dongfeng-pay/service/service_init"
2019-12-19 14:47:58 +08:00
)
func main() {
//启动订单查询消费者
//go gateway.CreateSupplierOrderQueryCuConsumer()
service_init.InitAll()
beego.Run()
}