bielik / main.py
artelo1's picture
Upload main.py
7333803 verified
raw
history blame
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}