test_3 / main.py
ζŽζ»”
first commit
56296f4
raw
history blame contribute delete
113 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}