| 14 | ) |
| 15 | |
| 16 | type Source interface { |
| 17 | Description() string |
| 18 | RelativePath() (string, error) |
| 19 | Bytes() ([]byte, error) |
| 20 | } |
| 21 | |
| 22 | var _ []Source = []Source{BytesSource{}, StdinSource{}, |
| 23 | LocalSource{}, HTTPSource{}, &CachedSource{}} |
no outgoing calls
no test coverage detected
searching dependent graphs…