dongfeng-pay/shop/main.go

11 lines
114 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/shop/routers"
2019-12-19 14:47:58 +08:00
)
func main() {
beego.Run()
}