convox/pkg/atom/interface.go
David Dollar 50ea56855f
atom: tighten up and document state machine (#45)
* atom: tighten up and document state machine

* remove dead code

* fix k8s tests
2019-12-06 13:44:30 -05:00

9 lines
226 B
Go

package atom
type Interface interface {
Apply(ns, name, release string, template []byte, timeout int32) error
Cancel(ns, name string) error
Status(ns, name string) (string, string, error)
// Wait(ns, name string) error
}