feat(api): add post creation client

This commit is contained in:
zetaloop
2026-04-25 14:55:30 +08:00
parent 65db255e20
commit be7f957ca4
2 changed files with 23 additions and 1 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ export { getGameById, listGames } from "./games"
export { listNotifications, markNotificationAsRead } from "./notifications"
export { getOrderById, listOrders, listOrdersByConsumer } from "./orders"
export { getPlayerById, listPlayers, listPlayersByShop } from "./players"
export { getPostById, listPosts, listPostsByAuthor, togglePostLike } from "./posts"
export { createPost, getPostById, listPosts, listPostsByAuthor, togglePostLike } from "./posts"
export { listReviews, listReviewsByOrder, listReviewsByTargetUser } from "./reviews"
export {
createPlayerService,