containerd/execution/status.go
Kenfe-Mickael Laventure bd6057c8e1 execution: remove statedir type
Signed-off-by: Kenfe-Mickael Laventure <mickael.laventure@gmail.com>
2017-01-19 08:31:11 -08:00

15 lines
270 B
Go

package execution
type Status string
const (
Created Status = "created"
Paused Status = "paused"
Pausing Status = "pausing"
Running Status = "running"
Stopped Status = "stopped"
Deleted Status = "deleted"
Unknown Status = "unknown"
UnknownStatusCode = 255
)