teeest / main.py
osanseviero's picture
Create main.py
7df705d
raw
history blame contribute delete
108 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}