()
| 30 | type ValidatorCallback func(string) (bool, string, string) |
| 31 | |
| 32 | func (e *ValidationError) Error() string { |
| 33 | return fmt.Sprintf("**%s** %s", e.Section, e.Message) |
| 34 | } |
| 35 | |
| 36 | type Validator struct { |
| 37 | Errors []ValidationError |
no outgoing calls