This commit is contained in:
Eden Kirin
2024-02-02 20:23:57 +01:00
parent 8b1c9d02c5
commit fbcf87118d
2 changed files with 5 additions and 1 deletions

View File

@ -17,7 +17,10 @@ const (
)
func initApp() *fiber.App {
app := fiber.New()
app := fiber.New(fiber.Config{
CaseSensitive: true,
StrictRouting: true,
})
return app
}