Documentation ¶
Index ¶
- Variables
- func Debug(fn func())
- func Debugf(args ...interface{})
- type Env
- func (e *Env) AddTask(t Task)
- func (e *Env) Child() *Env
- func (e *Env) ExportedTasks() []string
- func (e *Env) GetExportedTask(name string) (Task, *Env)
- func (e *Env) GetTask(name string) (Task, *Env)
- func (e *Env) GetVar(k string) interface{}
- func (e *Env) Id() string
- func (e *Env) IsRoot() bool
- func (e *Env) SetVar(k string, v interface{})
- func (e *Env) Tasks() []string
- type Namespace
- type RunContext
- type Runtime
- type Task
- type Watcher
Constants ¶
This section is empty.
Variables ¶
View Source
var ( MissingTask = errors.New("Task doesn't exist") TaskExists = errors.New("Task with same name exists") )
Functions ¶
Types ¶
type Env ¶
type Env struct {
// contains filtered or unexported fields
}
func (*Env) ExportedTasks ¶
type RunContext ¶
type Runtime ¶
type Runtime struct { Watcher Watcher // contains filtered or unexported fields }
func LoadRuntime ¶
Click to show internal directories.
Click to hide internal directories.