containerd/execution.go
Michael Crosby 503b068f59 Change base package to containerd from containerkit
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
2016-11-29 16:08:30 -08:00

13 lines
323 B
Go

package containerd
import "errors"
var ErrProcessSet = errors.New("container process is already set")
type Runtime interface {
Create(*Container) (ProcessDelegate, error)
Start(*Container) error
Delete(*Container) error
Exec(*Container, *Process) (ProcessDelegate, error)
Load(id string) (ProcessDelegate, error)
}