17d9c10e2d
Add addprocess event for addtional processes Add more api process information
9 lines
264 B
Go
9 lines
264 B
Go
package containerd
|
|
|
|
import "github.com/opencontainers/specs"
|
|
|
|
// runtime handles containers, containers handle their own actions.
|
|
type Runtime interface {
|
|
Create(id, bundlePath string) (Container, error)
|
|
StartProcess(Container, specs.Process) (Process, error)
|
|
}
|