abaa421141
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
13 lines
200 B
Go
13 lines
200 B
Go
package execution
|
|
|
|
import "os"
|
|
|
|
type Process interface {
|
|
Container() *Container
|
|
ID() string
|
|
Pid() int64
|
|
//Spec() *specs.Process
|
|
Wait() (uint32, error)
|
|
Signal(os.Signal) error
|
|
Status() Status
|
|
}
|