fiber/validate.go

6 lines
67 B
Go

package fiber
type Validator interface {
Validate(v any) error
}