Validatable is implemented by anything that has fields that should be validated.
| 14 | |
| 15 | // Validatable is implemented by anything that has fields that should be validated. |
| 16 | type Validatable interface { |
| 17 | Validate() []error |
| 18 | } |
| 19 | |
| 20 | type validationError struct { |
| 21 | errs []error |
no outgoing calls
no test coverage detected