e2b-dev--e2b
10 行
163 B
Python
已生成的
10 行
163 B
Python
已生成的
from enum import Enum
|
|
|
|
|
|
class SandboxState(str, Enum):
|
|
PAUSED = "paused"
|
|
RUNNING = "running"
|
|
|
|
def __str__(self) -> str:
|
|
return str(self.value)
|