Storage can store results.
| 12 | |
| 13 | // Storage can store results. |
| 14 | type Storage interface { |
| 15 | Type() string |
| 16 | Store([]types.Result) error |
| 17 | } |
| 18 | |
| 19 | // StorageReader can read results from the Storage. |
| 20 | type StorageReader interface { |
no outgoing calls
no test coverage detected