dockge-cli/dockge_cli/models/codes.py
Firq 0c884e01cf
All checks were successful
/ backend-pylint (push) Successful in 11s
First implementation
2024-07-02 18:09:56 +02:00

8 lines
131 B
Python

from enum import Enum
class StackStatus(Enum):
# pylint: disable=invalid-name
inactive = 1
running = 3
exited = 4