1package models 2 3type Validator interface { 4 // Validate checks the object and returns any error. 5 Validate() error 6}