mirror of
https://github.com/gofiber/fiber.git
synced 2025-02-22 00:13:12 +00:00
15 lines
565 B
Go
15 lines
565 B
Go
package fiber
|
|
|
|
import "github.com/gofiber/fiber/v2/internal/schema"
|
|
|
|
type (
|
|
// Conversion error exposes the internal schema.ConversionError for public use.
|
|
ConversionError = schema.ConversionError
|
|
// UnknownKeyError error exposes the internal schema.UnknownKeyError for public use.
|
|
UnknownKeyError = schema.UnknownKeyError
|
|
// EmptyFieldError error exposes the internal schema.EmptyFieldError for public use.
|
|
EmptyFieldError = schema.EmptyFieldError
|
|
// MultiError error exposes the internal schema.MultiError for public use.
|
|
MultiError = schema.MultiError
|
|
)
|