Clawith/backend/app/services/sandbox/remote/__init__.py

6 lines
241 B
Python

"""Remote sandbox backends."""
from app.services.sandbox.remote.aio_sandbox_backend import AioSandboxBackend
from app.services.sandbox.remote.self_hosted_backend import SelfHostedBackend
__all__ = ["SelfHostedBackend", "AioSandboxBackend"]