Files
containerd/runtime.go
Michael Crosby 05683fb0ee Fix build errors
2015-11-05 15:49:13 -08:00

7 lines
165 B
Go

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