This commit is contained in:
2026-03-25 23:31:29 +07:00
parent 87e52357cc
commit 5e70645ab3

View File

@@ -9,7 +9,7 @@ import (
func NotFoundRoute(app *fiber.App) {
app.Use(
func(c fiber.Ctx) error {
return c.Status(fiber.StatusNotFound).JSON(response.CommonResponse{
return c.Status(fiber.StatusOK).JSON(response.CommonResponse{
Status: false,
Message: "sorry, endpoint is not found",
})