mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-06-08 11:17:27 +00:00
12 lines
265 B
Python
12 lines
265 B
Python
from fastapi import FastAPI
|
|
|
|
app = FastAPI()
|
|
|
|
|
|
@app.get("/portfolio/{portfolio_id}")
|
|
async def get_portfolio(portfolio_id: int):
|
|
return {
|
|
"portfolio_id": portfolio_id,
|
|
"name": "My Portfolio",
|
|
"description": "This is my portfolio",
|
|
}
|