diff options
Diffstat (limited to 'input')
-rw-r--r-- | input/stdin.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/input/stdin.go b/input/stdin.go index 5acfa5e..25840ef 100644 --- a/input/stdin.go +++ b/input/stdin.go @@ -13,6 +13,10 @@ type StdinInput struct { retchan chan *work.Work } +func NewStdin() *StdinInput { + return &StdinInput{} +} + func (i *StdinInput) Start() chan *work.Work { i.retchan = make(chan *work.Work, 100) r := bufio.NewReader(os.Stdin) |