36 lines
890 B
Go
36 lines
890 B
Go
// Code scaffolded by goctl. Safe to edit.
|
|
// goctl 1.9.2
|
|
|
|
package socialService
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/JACKYMYPERSON/hldrCenter/config"
|
|
"github.com/JACKYMYPERSON/hldrCenter/internal/social_service/internal/model"
|
|
"github.com/JACKYMYPERSON/hldrCenter/internal/social_service/internal/types"
|
|
|
|
"github.com/zeromicro/go-zero/core/logx"
|
|
)
|
|
|
|
type UpdateSocialServiceLogic struct {
|
|
logx.Logger
|
|
ctx context.Context
|
|
cfg *config.Config
|
|
model model.SocialServiceModel
|
|
}
|
|
|
|
func NewUpdateSocialServiceLogic(ctx context.Context, cfg *config.Config, model model.SocialServiceModel) *UpdateSocialServiceLogic {
|
|
return &UpdateSocialServiceLogic{
|
|
Logger: logx.WithContext(ctx),
|
|
ctx: ctx,
|
|
cfg: cfg,
|
|
model: model,
|
|
}
|
|
}
|
|
|
|
func (l *UpdateSocialServiceLogic) UpdateSocialService(req *types.UpdateSocialServiceReq) (resp *types.UpdateSocialServiceResp, err error) {
|
|
|
|
return
|
|
}
|