Spaces:
Running
on
Zero
Running
on
Zero
File size: 276 Bytes
ce113d9 |
1 2 3 4 5 6 7 8 9 10 11 12 |
from fastapi import FastAPI
from .choices import router as choices_router
from .questions import router as questions_router
__all__ = ("register_routers",)
def register_routers(app: FastAPI):
app.include_router(questions_router)
app.include_router(choices_router)
|