Doc defines the documentation interface.
| 17 | |
| 18 | // Doc defines the documentation interface. |
| 19 | type Doc interface { |
| 20 | GetCheck(name string) (CheckDoc, error) |
| 21 | GetChecks() []CheckDoc |
| 22 | CheckExists(name string) bool |
| 23 | } |
| 24 | |
| 25 | // CheckDoc defines the documentation interface for a check. |
| 26 | type CheckDoc interface { |
no outgoing calls
no test coverage detected