mirror of
https://github.com/servo/servo.git
synced 2025-10-09 13:09:25 +01:00
3 lines
177 B
Python
3 lines
177 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/html")
|
|
response.content = b"<meta charset=\"" + request.GET.first(b"label") + b"\">hello encoding"
|