8 lines
225 B
Python
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} |