mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
8 lines
145 B
Python
8 lines
145 B
Python
from fastapi import FastAPI
|
|
from app.portfolio import router as portfolio_router
|
|
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
app.include_router(portfolio_router.router)
|