feat(sandbox): add Python 3 code execution sandbox support
This commit is contained in:
8
sandbox/app/controllers/__init__.py
Normal file
8
sandbox/app/controllers/__init__.py
Normal file
@@ -0,0 +1,8 @@
|
||||
from fastapi import APIRouter
|
||||
|
||||
from . import health_controller, sandbox_controller
|
||||
|
||||
manager_router = APIRouter()
|
||||
|
||||
manager_router.include_router(health_controller.router)
|
||||
manager_router.include_router(sandbox_controller.router)
|
||||
Reference in New Issue
Block a user