项目文件夹

文件
2026-07-13 12:47:58 +08:00

13 行
243 B
Python
已生成的

from enum import Enum
class NodeStatus(str, Enum):
CONNECTING = "connecting"
DRAINING = "draining"
READY = "ready"
STANDBY = "standby"
UNHEALTHY = "unhealthy"
def __str__(self) -> str:
return str(self.value)