aboutsummaryrefslogtreecommitdiff
path: root/routes/404.go
diff options
context:
space:
mode:
authorFChannel <>2022-05-22 14:08:36 -0700
committerFChannel <>2022-06-19 12:53:29 -0700
commita66b676481d273508927e64a22e388dc302890ba (patch)
tree7c67b04dd8b39125526567ae6f08a39d0346d260 /routes/404.go
parent6a0f664b565716ad08301e7699d6c0393dbba977 (diff)
route organization
Diffstat (limited to 'routes/404.go')
-rw-r--r--routes/404.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/routes/404.go b/routes/404.go
deleted file mode 100644
index 94b96e8..0000000
--- a/routes/404.go
+++ /dev/null
@@ -1,9 +0,0 @@
-package routes
-
-import (
- "github.com/gofiber/fiber/v2"
-)
-
-func NotFound(c *fiber.Ctx) error {
- return c.Status(404).Render("404", fiber.Map{}, "layouts/main")
-}