This commit is contained in:
qiangyanwen 2022-12-14 11:52:33 +08:00
parent 4abca8119b
commit d78c665838
1 changed files with 2 additions and 2 deletions

View File

@ -16,5 +16,5 @@ async def set_body(request: Request, body: bytes):
async def get_body(request: Request) -> bytes:
body = await request.body()
await set_body(request,body)
await set_body(request, body)
return body