Files
2026-07-13 12:47:58 +08:00

10 lines
159 B
Python
Generated

from enum import Enum
class SandboxOnTimeout(str, Enum):
KILL = "kill"
PAUSE = "pause"
def __str__(self) -> str:
return str(self.value)