mirror of
https://github.com/servo/servo.git
synced 2025-06-24 09:04:33 +01:00
5 lines
142 B
Python
5 lines
142 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=utf-8")]
|
|
content = chr(0xff)
|
|
|
|
return headers, content
|