Name returns name of the rule, it should be a unique identifier
()
| 57 | type Rule interface { |
| 58 | // Name returns name of the rule, it should be a unique identifier |
| 59 | Name() string |
| 60 | |
| 61 | // Apply calls with arguments and flags for the rule from config file |
| 62 | // if flags or arguments are invalid or not expected return an error |
no outgoing calls