generated from Luis/nextjs-python-web-template
8 lines
146 B
Python
8 lines
146 B
Python
from fastapi import FastAPI
|
|
|
|
from .routers import health, root
|
|
|
|
app = FastAPI()
|
|
app.include_router(health.router)
|
|
app.include_router(root.router)
|