blob: 4bbbae5b6b3c994cc8b435050e145ffdfefa44c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package input
import (
"io"
)
type InputClient interface {
Scan() ([]string, error)
ReadMetadata(string) (map[string]string, error)
GetReader(string) (io.Reader, error)
}
|