blob: 2db319817910c1853b38ba3b003968f5976ed248 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package middleware
import "github.com/gofiber/fiber/v2"
func NotFound(c *fiber.Ctx) error {
return c.Status(fiber.StatusNotFound).JSON(fiber.Map{
"message": "Page not found.",
})
}
|