Files
sundynix-micro-be/app/plant/api/internal/handler/post/getmypostlisthandler.go
T
2026-05-23 13:55:05 +08:00

28 lines
716 B
Go

package post
import (
"github.com/zeromicro/go-zero/rest/httpx"
"net/http"
"sundynix-micro-go/app/plant/api/internal/logic/post"
"sundynix-micro-go/app/plant/api/internal/svc"
"sundynix-micro-go/app/plant/api/internal/types"
"sundynix-micro-go/common/response"
)
func GetMyPostListHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
var req types.PostListReq
if err := httpx.Parse(r, &req); err != nil {
response.Fail(w, err.Error())
return
}
l := post.NewGetMyPostListLogic(r.Context(), svcCtx)
resp, err := l.GetMyPostList(&req)
if err != nil {
response.Fail(w, err.Error())
} else {
response.OkWithData(w, resp)
}
}
}