8 lines
121 B
Go
8 lines
121 B
Go
package validation
|
|
|
|
type ComponentOption func(*ComponentConfig)
|
|
|
|
type ComponentConfig struct {
|
|
Validators []Validator
|
|
}
|