Spaces:
Running
Running
from fastapi import FastAPI | |
app = FastAPI() | |
def home(): | |
return {"message": "Welcome to my FastAPI app on HF Spaces!"} | |
def say_hello(name: str): | |
return {"message": f"Hello, {name}!"} | |