Testing_FastAPI / app.py
Baskar2005's picture
Create app.py
a75aff6 verified
raw
history blame contribute delete
233 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return {"message": "Welcome to my FastAPI app on HF Spaces!"}
@app.get("/hello/{name}")
def say_hello(name: str):
return {"message": f"Hello, {name}!"}