Files
services/app/domain/domain.go
2022-01-20 15:09:04 +00:00

11 lines
198 B
Go

package domain
type Status string
const (
StatusDeploying = "Deploying"
StatusUpdating = "Updating"
StatusDeleting = "Deleting"
StatusDeploymentError = "DeploymentError"
)