myProfileHandler (#239)

Co-authored-by: Buf Generate <buf-generate@bondee.com>
This commit is contained in:
Carlo
2025-10-16 21:17:28 +08:00
committed by GitHub
parent 23f85616b4
commit 844ff8c102
5 changed files with 92 additions and 0 deletions

View File

@@ -48,6 +48,7 @@ func setupRoutes(appServer *AppServer) *gin.Engine {
api.POST("/feeds/detail", appServer.getFeedDetailHandler)
api.POST("/user/profile", appServer.userProfileHandler)
api.POST("/feeds/comment", appServer.postCommentHandler)
api.GET("/user/me", appServer.myProfileHandler)
}
return router