2023-05-31 10:33:02 +00:00
|
|
|
package logic
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-06-01 03:27:34 +00:00
|
|
|
"fusenapi/home-user-auth/internal/svc"
|
|
|
|
"fusenapi/home-user-auth/internal/types"
|
2023-05-31 10:33:02 +00:00
|
|
|
|
|
|
|
"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
|
2023-06-01 03:27:34 +00:00
|
|
|
|
2023-05-31 10:33:02 +00:00
|
|
|
return
|
|
|
|
}
|