Files
fastapi-app/main.py
T
2026-05-17 07:28:41 +00:00

8 lines
225 B
Python

from fastapi import FastAPI, Request
app = FastAPI()
@app.get("/")
async def read_root(request: Request):
client_host = request.client.host
return {"message": "ハローワールド!!", "client_ip": client_host}