9 lines
247 B
Python
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."],
|
|
}
|