新设计

This commit is contained in:
eson
2023-05-31 18:33:02 +08:00
parent 12986049ef
commit f7d547de59
14 changed files with 764 additions and 11 deletions

View File

@@ -0,0 +1,29 @@
package logic
import (
"context"
"home-user-auth/internal/svc"
"home-user-auth/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type UserFontsLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
func NewUserFontsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UserFontsLogic {
return &UserFontsLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *UserFontsLogic) UserFonts(req *types.Request) (resp *types.Response, err error) {
// todo: add your logic here and delete this line
return
}