Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI() | |
def hello(): | |
return {"message": "Hello World"} | |
from fastapi import FastAPI | |
app = FastAPI() | |
def hello(): | |
return {"message": "Hello World"} | |