You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
406 B
14 lines
406 B
3 years ago
|
package yaml
|
||
|
|
||
|
// StructValidator need to implement Struct method only
|
||
|
// ( see https://pkg.go.dev/github.com/go-playground/validator/v10#Validate.Struct )
|
||
|
type StructValidator interface {
|
||
|
Struct(interface{}) error
|
||
|
}
|
||
|
|
||
|
// FieldError need to implement StructField method only
|
||
|
// ( see https://pkg.go.dev/github.com/go-playground/validator/v10#FieldError )
|
||
|
type FieldError interface {
|
||
|
StructField() string
|
||
|
}
|