14 lines
349 B
Go
14 lines
349 B
Go
package validate
|
|
|
|
import (
|
|
"github.com/go-playground/validator/v10"
|
|
)
|
|
|
|
// Option contains all the necessary functions for a custom validator.
|
|
type Option struct {
|
|
ValidatorName string
|
|
ValidatorFunc validator.Func
|
|
RegisterTranslationFunc validator.RegisterTranslationsFunc
|
|
TranslationFunc validator.TranslationFunc
|
|
}
|