mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
6 lines
143 B
Python
6 lines
143 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=utf-8")]
|
|
content = "<img>foo"
|
|
|
|
return headers, content
|