code / main.py
atonyxu
code
4cbbf07
raw
history blame
116 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, World!"}