configCheck is the callback function for check/verify command
(confPath string)
| 47 | |
| 48 | // configCheck is the callback function for check/verify command |
| 49 | func configCheck(confPath string) []error { |
| 50 | conf, err := config.Parse(confPath) |
| 51 | if err != nil { |
| 52 | return []error{err} |
| 53 | } |
| 54 | return config.Validate(conf) |
| 55 | } |
no test coverage detected