mirror of
https://github.com/quay/quay.git
synced 2026-01-26 06:21:37 +03:00
8 lines
177 B
Go
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
|
|
}
|