4
0

main.py 109 B

12345678
  1. from fastapi import FastAPI
  2. app = FastAPI()
  3. @app.get("/")
  4. def hello_world():
  5. return {"message": "OK"}