mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2024-11-15 06:59:20 +08:00
15 lines
246 B
Go
15 lines
246 B
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"github.com/astaxie/beego"
|
||
|
_ "juhe/jhgateway/routers"
|
||
|
"juhe/service/service_init"
|
||
|
)
|
||
|
|
||
|
func main() {
|
||
|
//启动订单查询消费者
|
||
|
//go gateway.CreateSupplierOrderQueryCuConsumer()
|
||
|
service_init.InitAll()
|
||
|
beego.Run()
|
||
|
}
|