Start work on Container and Process model
Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
This commit is contained in:
10
execution/status.go
Normal file
10
execution/status.go
Normal file
@@ -0,0 +1,10 @@
|
||||
package execution
|
||||
|
||||
type Status string
|
||||
|
||||
const (
|
||||
Paused Status = "paused"
|
||||
Running Status = "running"
|
||||
Stopped Status = "stopped"
|
||||
Deleted Status = "deleted"
|
||||
)
|
Reference in New Issue
Block a user