containerd/runtime.go
2015-11-05 15:29:53 -08:00

7 lines
189 B
Go

package containerd
// runtime handles containers, containers handle their own actions.
type Runtime interface {
Create(id, bundlePath string) (Container, error)
Delete(id sting) error
}