feat: more progress

This commit is contained in:
darwincereska
2026-02-20 06:24:59 -05:00
parent 90f629ad48
commit aa51af9b9f
3 changed files with 32 additions and 6 deletions

View File

@@ -122,7 +122,7 @@ func strapiRoutes(e *echo.Echo, s *services.StrapiService) {
})
// GET /api/posts/post/:slug
posts.GET("/post/:slug", func(c *echo.Context) error {
e.GET("/api/post/:slug", func(c *echo.Context) error {
slug := c.Param("slug")
return handlers.GetPost(c, s, slug)