go-common/app/service/live/xcaptcha/server/http/xcaptcha.go
2019-04-22 18:49:16 +08:00

17 lines
336 B
Go

package http
import (
v12 "go-common/app/service/live/xcaptcha/api/grpc/v1"
"go-common/library/net/http/blademaster"
)
// captchaVerify
func captchaVerify(ctx *blademaster.Context) {
req := new(v12.XVerifyReq)
if err := ctx.Bind(req); err != nil {
return
}
resp, err := xCaptchaService.Verify(ctx, req)
ctx.JSON(resp, err)
}