add sandbox runtime control endpoints
This commit is contained in:
parent
0ca0bac9bf
commit
1b38bcfeab
17 changed files with 1408 additions and 119 deletions
|
|
@ -32,3 +32,9 @@ class SandboxAlreadyRunningError(SandboxError):
|
|||
def __init__(self, chat_id: str) -> None:
|
||||
super().__init__('sandbox_already_running')
|
||||
self.chat_id = chat_id
|
||||
|
||||
|
||||
class SandboxConflictError(SandboxError):
|
||||
def __init__(self, chat_id: str) -> None:
|
||||
super().__init__('sandbox_conflict')
|
||||
self.chat_id = chat_id
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue