Files
ARC/backend/app/sandbox/docker_runner.py

9 lines
247 B
Python
Raw Normal View History

2026-06-12 18:16:58 +02:00
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."],
}