Files
ARC/backend/app/sandbox/docker_runner.py
Chevallier a7d8914e25 first push
2026-06-12 18:16:58 +02:00

9 lines
247 B
Python

async def run_in_sandbox(code: str) -> dict:
"""
Stub minimal pour future exécution sécurisée dans Docker.
"""
return {
"status": "not_implemented",
"logs": ["Sandbox Docker non branchée à l'étape 0."],
}