Spaces:
Sleeping
Sleeping
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
return {"Hello": "I am not the World!"} |
from fastapi import FastAPI | |
app = FastAPI() | |
def read_root(): | |
return {"Hello": "I am not the World!"} |