You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dongfeng-pay/jhmerchant/routers/router.go

24 lines
453 B
Go

package routers
import (
"github.com/astaxie/beego"
"github.com/dchest/captcha"
"juhe/jhmerchant/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{},
)
}