1
0
mirror of https://github.com/quay/quay.git synced 2026-01-27 18:42:52 +03:00
Files
quay/config-tool/pkg/lib/shared/interfaces.go
2023-07-28 16:34:05 +02:00

8 lines
177 B
Go

package shared
// FieldGroup is an interface that implements the Validate() function
type FieldGroup interface {
Validate(opts Options) []ValidationError
Fields() []string
}