11 lines
174 B
Go
11 lines
174 B
Go
package deployers
|
|
|
|
var ErrContextDone = "unable to execute, context done"
|
|
|
|
type IDeployer interface {
|
|
Deploy() error
|
|
Build() error
|
|
Clear() error
|
|
Done() <-chan struct{}
|
|
}
|