diff options
Diffstat (limited to 'input')
-rw-r--r-- | input/interface.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/input/interface.go b/input/interface.go new file mode 100644 index 0000000..1743249 --- /dev/null +++ b/input/interface.go @@ -0,0 +1,7 @@ +package input + +import "github.com/Shugyousha/stasher/work" + +type Input interface { + Start() chan *work.Work +} |