mirror of
https://github.com/go-task/task.git
synced 2025-01-12 04:34:11 +02:00
6ed30f1add
This shouldn't have any behavior changes for now. This is a code refactor that should allow us to do further improvements on how variables are handled, specially regarding respecting the declaration order in Taskfiles, which should make it easier for the users. Initial work on #218
8 lines
105 B
Go
8 lines
105 B
Go
package taskfile
|
|
|
|
// Call is the parameters to a task call
|
|
type Call struct {
|
|
Task string
|
|
Vars *Vars
|
|
}
|