mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-12 12:20:25 +08:00
12 lines
220 B
Go
12 lines
220 B
Go
|
|
package apis
|
||
|
|
|
||
|
|
import (
|
||
|
|
"mayfly-go/base/captcha"
|
||
|
|
"mayfly-go/base/ctx"
|
||
|
|
)
|
||
|
|
|
||
|
|
func GenerateCaptcha(rc *ctx.ReqCtx) {
|
||
|
|
id, image := captcha.Generate()
|
||
|
|
rc.ResData = map[string]interface{}{"base64Captcha": image, "cid": id}
|
||
|
|
}
|