(*Reader)
| 37 | // A ReaderOption is any type that can apply a configuration to a [Reader]. |
| 38 | ReaderOption interface { |
| 39 | ApplyToReader(*Reader) |
| 40 | } |
| 41 | // A Reader will recursively read Taskfiles from a given [Node] and build a |
| 42 | // [ast.TaskfileGraph] from them. |
no outgoing calls
no test coverage detected