Files
juwan-backend/app/users/api/internal/logic/user/updateThemeSettingsLogic.go
T
2026-02-27 19:17:01 +08:00

35 lines
765 B
Go

// Code scaffolded by goctl. Safe to edit.
// goctl 1.9.2
package user
import (
"context"
"juwan-backend/app/users/api/internal/svc"
"juwan-backend/app/users/api/internal/types"
"github.com/zeromicro/go-zero/core/logx"
)
type UpdateThemeSettingsLogic struct {
logx.Logger
ctx context.Context
svcCtx *svc.ServiceContext
}
// 更新主题偏好
func NewUpdateThemeSettingsLogic(ctx context.Context, svcCtx *svc.ServiceContext) *UpdateThemeSettingsLogic {
return &UpdateThemeSettingsLogic{
Logger: logx.WithContext(ctx),
ctx: ctx,
svcCtx: svcCtx,
}
}
func (l *UpdateThemeSettingsLogic) UpdateThemeSettings(req *types.UpdateThemeSettingsReq) (resp *types.EmptyResp, err error) {
// todo: add your logic here and delete this line
return
}