Include represents information about included taskfiles
| 15 | type ( |
| 16 | // Include represents information about included taskfiles |
| 17 | Include struct { |
| 18 | Namespace string |
| 19 | Taskfile string |
| 20 | Dir string |
| 21 | Optional bool |
| 22 | Internal bool |
| 23 | Aliases []string |
| 24 | Excludes []string |
| 25 | AdvancedImport bool |
| 26 | Vars *Vars |
| 27 | Flatten bool |
| 28 | Checksum string |
| 29 | } |
| 30 | // Includes is an ordered map of namespaces to includes. |
| 31 | Includes struct { |
| 32 | om *orderedmap.OrderedMap[string, *Include] |
nothing calls this directly
no outgoing calls
no test coverage detected