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