Change base package to containerd from containerkit

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
Michael Crosby
2016-11-29 16:08:30 -08:00
parent 51510a8806
commit 503b068f59
5 changed files with 8 additions and 8 deletions

View File

@@ -1,8 +1,8 @@
package containerkit
package containerd
import "errors"
var ErrProcessSet = errors.New("containerkit: container process is already set")
var ErrProcessSet = errors.New("container process is already set")
type Runtime interface {
Create(*Container) (ProcessDelegate, error)