package auth import ( "errors" "github.com/gofiber/fiber/v2" ) func AuthHandler(c *fiber.Ctx) error { return errors.New("not implemented") }