| 123456789101112131415 |
- package admin
- import (
- "gfast/library/response"
- "gfast/library/utils"
- "github.com/gogf/gf/frame/g"
- "github.com/gogf/gf/net/ghttp"
- )
- type Public struct{}
- func (p *Public) Verify(r *ghttp.Request) {
- idKeyC, base64stringC := utils.GetVerifyImg()
- response.RJson(r, 200, "ok", g.MapStrStr{"idKeyC": idKeyC, "base64stringC": base64stringC})
- }
|