mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-12-26 01:16:36 +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}
|
|
}
|