mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-19 00:22:10 +03:00
10 lines
221 B
Python
10 lines
221 B
Python
|
from app import app
|
||
|
from flask import Response, request
|
||
|
|
||
|
|
||
|
@app.route("/post_large", methods=["POST"])
|
||
|
def post_large():
|
||
|
data = request.data
|
||
|
assert len(data) == 15728640
|
||
|
return Response("15728640", status=200)
|