1 2 3 4 5 6
from fastapi import FastAPI from routers import health app = FastAPI(title="{{name}}") app.include_router(health.router)