space-test / main.py
Tony Shepherd
renamed app.py to main.py
4c7239b
raw
history blame
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}