mirror of
https://github.com/servo/servo.git
synced 2025-10-09 13:09:25 +01:00
3 lines
162 B
Python
3 lines
162 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/plain;charset=" + request.GET.first(b"label"))
|
|
response.content = bytes(range(255))
|