Initialize narratio Go module and CLI scaffold
This commit is contained in:
14
internal/manifest/status.go
Normal file
14
internal/manifest/status.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package manifest
|
||||
|
||||
// StageStatus is the lifecycle state of a pipeline stage.
|
||||
type StageStatus string
|
||||
|
||||
const (
|
||||
StatusPending StageStatus = "pending"
|
||||
StatusRunning StageStatus = "running"
|
||||
StatusSucceeded StageStatus = "succeeded"
|
||||
StatusFailed StageStatus = "failed"
|
||||
StatusSkipped StageStatus = "skipped"
|
||||
StatusStale StageStatus = "stale"
|
||||
StatusInterrupted StageStatus = "interrupted"
|
||||
)
|
||||
Reference in New Issue
Block a user