feat: Config from env

This commit is contained in:
2024-12-11 18:30:46 +01:00
parent 715eb8e1cb
commit 4faf76a073
10 changed files with 178 additions and 31 deletions

View File

@@ -2,6 +2,6 @@ package handlers
import "github.com/gofiber/fiber/v2"
func NotFoundHandler(c *fiber.Ctx) error {
func (h *DefaultHandler) NotFoundHandler(c *fiber.Ctx) error {
return c.Status(404).SendString("Not Found")
}