"""API Router.""" from fastapi import FastAPI from .app import backend_api app = FastAPI() app.include_router(backend_api)