from .internal import admin app = FastAPI() app.include_router( admin.router, dependencies=[Depends(get_token_header)], ) ``` aü