mirror of
https://github.com/kongyuebin1/dongfeng-pay.git
synced 2025-10-23 09:38:01 +08:00
提交新项目
This commit is contained in:
16
jhgateway/routers/router.go
Normal file
16
jhgateway/routers/router.go
Normal file
@@ -0,0 +1,16 @@
|
||||
package routers
|
||||
|
||||
import (
|
||||
"github.com/astaxie/beego"
|
||||
"juhe/jhgateway/controllers/gateway"
|
||||
)
|
||||
|
||||
func init() {
|
||||
//网关处理函数
|
||||
beego.Router("/gateway/scan", &gateway.ScanController{}, "*:Scan")
|
||||
beego.Router("/err/params", &gateway.ErrorGatewayController{}, "*:ErrorParams")
|
||||
//代付相关的接口
|
||||
beego.Router("gateway/payfor", &gateway.PayForGateway{}, "*:PayFor")
|
||||
beego.Router("/gateway/payfor/query", &gateway.PayForGateway{}, "*:PayForQuery")
|
||||
beego.Router("/gateway/balance", &gateway.PayForGateway{}, "*:Balance")
|
||||
}
|
Reference in New Issue
Block a user