Postgress / main.py
Kaballas's picture
Create main.py
6b2008e verified
raw
history blame contribute delete
106 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World"}