TinySkin/service/captcha.go
2023-09-24 00:21:03 +08:00

15 lines
248 B
Go

package service
import (
"context"
"github.com/xmdhs/authlib-skin/model"
)
func (w *WebService) GetCaptcha(ctx context.Context) model.Captcha {
return model.Captcha{
Type: w.config.Captcha.Type,
SiteKey: w.config.Captcha.SiteKey,
}
}