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