IValid is interface to control all models from user code
| 28 | |
| 29 | // IValid is interface to control all models from user code |
| 30 | type IValid interface { |
| 31 | Valid() error |
| 32 | } |
| 33 | |
| 34 | func templateValidatorString(regexpString string) validator.Func { |
| 35 | regexpValue := regexp.MustCompile(regexpString) |
nothing calls this directly
no outgoing calls
no test coverage detected