由gopath形式改为module

This commit is contained in:
kongyuebin
2021-04-27 15:33:49 +08:00
parent aef4dbb33c
commit 77d895e83a
1117 changed files with 332447 additions and 20 deletions

23
anget/routers/router.go Normal file
View File

@@ -0,0 +1,23 @@
package routers
import (
"github.com/astaxie/beego"
"github.com/dchest/captcha"
"dongfeng-pay/jhagent/controllers"
)
func init() {
//生产登录验证码
beego.Handler("/img.do/*.png", captcha.Server(130, 40))
beego.Include(
&controllers.Login{},
&controllers.Index{},
&controllers.TradeRecord{},
&controllers.UserInfo{},
&controllers.Withdraw{},
&controllers.DealExcel{},
&controllers.MultiWithdraw{},
&controllers.History{},
)
}