feat: add paused state to State class

This commit is contained in:
Axel-CH
2025-03-21 12:01:28 -04:00
parent a9714727b1
commit bbf0ac83a1

View File

@@ -7,8 +7,9 @@ class State(Enum):
"""
RUNNING = 1
STOPPED = 2
RELOAD_CONFIG = 3
PAUSED = 2
STOPPED = 3
RELOAD_CONFIG = 4
def __str__(self):
return f"{self.name.lower()}"