containerd/container.go

10 lines
136 B
Go
Raw Normal View History

2015-11-05 23:29:53 +00:00
package containerd
type Container interface {
2015-11-06 00:40:57 +00:00
ID() string
2015-11-06 21:01:55 +00:00
Start() error
2015-11-06 00:40:57 +00:00
Pid() (int, error)
2015-11-05 23:29:53 +00:00
SetExited(status int)
Delete() error
}