feat(02-02): Create Docker sandbox manager
Some checks failed
Discord Webhook / git (push) Has been cancelled

This commit is contained in:
Mai Development
2026-01-27 15:36:47 -05:00
parent c14ab4319e
commit c254e1df30
3 changed files with 182 additions and 1 deletions

6
src/sandbox/__init__.py Normal file
View File

@@ -0,0 +1,6 @@
"""Sandbox module for secure code execution."""
from .container_manager import ContainerManager
from .executor import SandboxExecutor
__all__ = ["ContainerManager", "SandboxExecutor"]