A StdinNode is a node that reads a taskfile from the standard input stream.
| 11 | |
| 12 | // A StdinNode is a node that reads a taskfile from the standard input stream. |
| 13 | type StdinNode struct { |
| 14 | *baseNode |
| 15 | } |
| 16 | |
| 17 | func NewStdinNode(dir string) (*StdinNode, error) { |
| 18 | return &StdinNode{ |
nothing calls this directly
no outgoing calls
no test coverage detected