A FileNode is a node that reads a taskfile from the local filesystem.
| 13 | |
| 14 | // A FileNode is a node that reads a taskfile from the local filesystem. |
| 15 | type FileNode struct { |
| 16 | *baseNode |
| 17 | entrypoint string |
| 18 | } |
| 19 | |
| 20 | func NewFileNode(entrypoint, dir string, opts ...NodeOption) (*FileNode, error) { |
| 21 | // Find the entrypoint file |
nothing calls this directly
no outgoing calls
no test coverage detected