8 lines
121 B
Go
8 lines
121 B
Go
package containerd
|
|
|
|
type Container interface {
|
|
ID() string
|
|
Pid() (int, error)
|
|
SetExited(status int)
|
|
Delete() error
|
|
}
|