Documentation ¶ Index ¶ type Custom func (c *Custom) Load(definition interface{}) (bool, error) func (c *Custom) Perform() error type Pip func (p *Pip) Load(definition interface{}) (bool, error) func (p *Pip) Perform() (err error) type Task func BuildFromDefinition(definition interface{}) (task Task, err error) Constants ¶ This section is empty. Variables ¶ This section is empty. Functions ¶ This section is empty. Types ¶ type Custom ¶ type Custom struct { // contains filtered or unexported fields } func (*Custom) Load ¶ func (c *Custom) Load(definition interface{}) (bool, error) func (*Custom) Perform ¶ func (c *Custom) Perform() error type Pip ¶ type Pip struct { // contains filtered or unexported fields } func (*Pip) Load ¶ func (p *Pip) Load(definition interface{}) (bool, error) func (*Pip) Perform ¶ func (p *Pip) Perform() (err error) type Task ¶ type Task interface { Load(interface{}) (bool, error) Perform() error } func BuildFromDefinition ¶ func BuildFromDefinition(definition interface{}) (task Task, err error) Source Files ¶ View all Source files custom.gopip.gotasks.go Click to show internal directories. Click to hide internal directories.