mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
14 lines
304 B
Python
14 lines
304 B
Python
from app import app
|
|
from flask import make_response, request
|
|
from io import BytesIO
|
|
|
|
|
|
@app.route("/bytes")
|
|
def bytes():
|
|
result = BytesIO()
|
|
result.write(b"\x01\x02\x03")
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.content_type = "application/octet-stream"
|
|
return resp
|