mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 20:28:42 +02:00
5 lines
143 B
Python
5 lines
143 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=utf-8")]
|
|
content = "<img>foo"
|
|
|
|
return headers, content
|