7 lines
165 B
Go
7 lines
165 B
Go
|
package containerd
|
||
|
|
||
|
// runtime handles containers, containers handle their own actions.
|
||
|
type Runtime interface {
|
||
|
Create(id, bundlePath string) (Container, error)
|
||
|
}
|