Spaces:
Runtime error
Runtime error
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
return {"Hello": "World!"} |
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
return {"Hello": "World!"} |