sshx / main.py
xdragxt's picture
Create main.py
6437fa2 verified
raw
history blame
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, world!"}