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