package api import ( "github.com/gofiber/fiber/v2" ) func MapAPIs(app *fiber.App, baseURL string) { api := app.Group(baseURL).Name("API") { api.Get("/users/me", getUserinfo) api.Get("/users/:accountId", getOthersInfo) api.Get("/feed", listFeed) drafts := api.Group("/drafts").Name("Draft box API") { drafts.Get("/", listDraftMixed) drafts.Get("/posts", listDraftPost) } stories := api.Group("/stories").Name("Story API") { stories.Post("/", createStory) stories.Put("/:postId", editStory) } articles := api.Group("/articles").Name("Article API") { articles.Post("/", createArticle) articles.Put("/:articleId", editArticle) } posts := api.Group("/posts").Name("Posts API") { posts.Get("/", listPost) posts.Get("/:postId", getPost) posts.Post("/:postId/react", reactPost) posts.Delete("/:postId", deletePost) posts.Get("/:post/replies", listPostReplies) } api.Get("/categories", listCategories) api.Post("/categories", newCategory) api.Put("/categories/:categoryId", editCategory) api.Delete("/categories/:categoryId", deleteCategory) } }