File size: 296 Bytes
9c1053c
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
from fastapi import Request
import time

async def add_process_time_header(request: Request, call_next):
    start_time = time.time()
    response = await call_next(request)
    process_time = time.time() - start_time
    response.headers["X-Process-Time"] = str(process_time)
    return response