From 3053c1f29c4271110f5ec1c71ab872c3145fe6df Mon Sep 17 00:00:00 2001 From: AzenKain Date: Wed, 25 Mar 2026 23:33:25 +0700 Subject: [PATCH] init --- internal/routes/notFoundRoute.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/routes/notFoundRoute.go b/internal/routes/notFoundRoute.go index 66efa25..3bdc078 100644 --- a/internal/routes/notFoundRoute.go +++ b/internal/routes/notFoundRoute.go @@ -9,7 +9,7 @@ import ( func NotFoundRoute(app *fiber.App) { app.Use( func(c fiber.Ctx) error { - return c.Status(fiber.StatusOK).JSON(response.CommonResponse{ + return c.Status(fiber.StatusNotFound).JSON(response.CommonResponse{ Status: false, Message: "sorry, endpoint is not found", })