8 lines
147 B
Go
8 lines
147 B
Go
package handlers
|
|
|
|
import "github.com/gofiber/fiber/v2"
|
|
|
|
func NotFoundHandler(c *fiber.Ctx) error {
|
|
return c.Status(404).SendString("Not Found")
|
|
}
|