cskj / main.py
wixcs's picture
Create main.py
03b1f41 verified
raw
history blame contribute delete
107 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"Hello": "World!"}