Files
Sipro-Stocks/main.py
2024-06-28 21:08:19 +03:00

14 lines
220 B
Python

from fastapi import FastAPI
app = FastAPI()
@app.get("/")
async def root():
return {"message": "Hello 312World"}
@app.get("/hello/{name}")
async def say_hello(name: str):
return {"message": f"Hello {name}"}