Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
# Initialize FastAPI app | |
fastapi_app = FastAPI() | |
# Create a simple FastAPI route | |
def fastapi_hello(): | |
return {"message": "Hello from FastAPI!"} | |