Test / main.py
DymiumSpencer's picture
Rename app.py to main.py
bdfe964
raw
history blame
110 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}