sshx / main.py
dragpro
Create main.py
6437fa2 verified
Raw
History Blame Contribute Delete
117 Bytes
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def read_root():
return {"message": "Hello, world!"}