Making containers run and delete

This commit is contained in:
Michael Crosby
2015-11-05 16:40:57 -08:00
parent 2af0f297fe
commit 5f5f4904e0
5 changed files with 55 additions and 25 deletions

View File

@@ -1,6 +1,8 @@
package containerd
type Container interface {
ID() string
Pid() (int, error)
SetExited(status int)
Delete() error
}