dockge-cli/dockge_cli/models/codes.py

10 lines
152 B
Python
Raw Normal View History

2024-07-02 16:09:56 +00:00
from enum import Enum
class StackStatus(Enum):
2024-07-05 14:05:35 +00:00
"""
2024-07-05 22:16:41 +00:00
mapping for plaintext vs statuscode
2024-07-05 14:05:35 +00:00
"""
2024-07-05 22:16:41 +00:00
INACTIVE = 1
RUNNING = 3
EXITED = 4