summaryrefslogtreecommitdiff
path: root/internal/client/input/input_client_interface.go
diff options
from:
to:
context:
space:
mode:
Diffstat (limited to 'internal/client/input/input_client_interface.go')
-rw-r--r--internal/client/input/input_client_interface.go11
1 files changed, 11 insertions, 0 deletions
diff --git a/internal/client/input/input_client_interface.go b/internal/client/input/input_client_interface.go
new file mode 100644
index 0000000..4bbbae5
--- /dev/null
+++ b/internal/client/input/input_client_interface.go
@@ -0,0 +1,11 @@
+package input
+
+import (
+ "io"
+)
+
+type InputClient interface {
+ Scan() ([]string, error)
+ ReadMetadata(string) (map[string]string, error)
+ GetReader(string) (io.Reader, error)
+}