Checker can create a types.Result.
| 6 | |
| 7 | // Checker can create a types.Result. |
| 8 | type Checker interface { |
| 9 | Type() string |
| 10 | Check() (types.Result, error) |
| 11 | } |
| 12 | |
| 13 | // Storage can store results. |
| 14 | type Storage interface { |
no outgoing calls
no test coverage detected