b823ce9149
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
18 lines
483 B
Go
18 lines
483 B
Go
package runtime
|
|
|
|
import (
|
|
"errors"
|
|
|
|
"github.com/opencontainers/specs"
|
|
)
|
|
|
|
var (
|
|
ErrNotChildProcess = errors.New("containerd: not a child process for container")
|
|
ErrInvalidContainerType = errors.New("containerd: invalid container type for runtime")
|
|
)
|
|
|
|
// runtime handles containers, containers handle their own actions.
|
|
type Runtime interface {
|
|
Create(id, bundlePath string, stdio *Stdio) (Container, error)
|
|
StartProcess(Container, specs.Process, *Stdio) (Process, error)
|
|
}
|