app-cloudep-tweeting-service/internal/logic/postservice/new_post_logic.go

32 lines
659 B
Go
Raw Permalink Normal View History

2024-08-28 09:09:01 +00:00
package postservicelogic
import (
"context"
2024-08-28 14:24:47 +00:00
"app-cloudep-feed-service/gen_result/pb/tweeting"
2024-08-28 09:09:01 +00:00
"app-cloudep-feed-service/internal/svc"
"github.com/zeromicro/go-zero/core/logx"
)
type NewPostLogic struct {
ctx context.Context
svcCtx *svc.ServiceContext
logx.Logger
}
func NewNewPostLogic(ctx context.Context, svcCtx *svc.ServiceContext) *NewPostLogic {
return &NewPostLogic{
ctx: ctx,
svcCtx: svcCtx,
Logger: logx.WithContext(ctx),
}
}
// NewPost 新增貼文
2024-08-28 14:24:47 +00:00
func (l *NewPostLogic) NewPost(in *tweeting.NewPostReq) (*tweeting.PostResp, error) {
2024-08-28 09:09:01 +00:00
// todo: add your logic here and delete this line
2024-08-28 14:24:47 +00:00
return &tweeting.PostResp{}, nil
2024-08-28 09:09:01 +00:00
}