5 lines
78 B
Go
5 lines
78 B
Go
package validation
|
|
|
|
type Constraint interface {
|
|
Validate(data any) []Error
|
|
}
|