This commit is contained in:
2025-03-28 17:51:34 +08:00
parent da612380e0
commit 5c8802d2f0
68 changed files with 3422 additions and 630 deletions

View File

@@ -0,0 +1,17 @@
package common
type CommonBiz interface {
CaptchaBiz() CaptchaBiz
}
type commonBiz struct{}
var _ CommonBiz = (*commonBiz)(nil)
func New() *commonBiz {
return &commonBiz{}
}
func (b *commonBiz) CaptchaBiz() CaptchaBiz {
return NewCaptcha()
}