validate.go raw
1 package yaml
2
3 // StructValidator need to implement Struct method only
4 // ( see https://pkg.go.dev/github.com/go-playground/validator/v10#Validate.Struct )
5 type StructValidator interface {
6 Struct(interface{}) error
7 }
8
9 // FieldError need to implement StructField method only
10 // ( see https://pkg.go.dev/github.com/go-playground/validator/v10#FieldError )
11 type FieldError interface {
12 StructField() string
13 }
14