mirror of
https://github.com/FlipsideCrypto/convox.git
synced 2026-02-06 19:07:13 +00:00
9 lines
226 B
Go
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
|
|
}
|