| 49 | func (s StdinSource) Bytes() ([]byte, error) { return s.bytes, s.err } |
| 50 | |
| 51 | type LocalSource struct { |
| 52 | path string |
| 53 | dir string |
| 54 | } |
| 55 | |
| 56 | func NewLocalSource(path, dir string) LocalSource { return LocalSource{path, dir} } |
| 57 |
nothing calls this directly
no outgoing calls
no test coverage detected