Spaces:
Sleeping
Sleeping
File size: 208 Bytes
df1fe5f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from abc import ABC, abstractmethod
class SandboxSetup(ABC):
default_sandbox_timeout = 3000
default_template = "api"
@property
@abstractmethod
def sandbox_id(self) -> str:
... |