mirror of
https://github.com/servo/servo.git
synced 2025-10-10 05:20:19 +01:00
5 lines
172 B
Python
5 lines
172 B
Python
def main(request, response):
|
|
headers = [(b"Content-type", b"text/html;charset=utf-8")]
|
|
content = u"<!doctype html><div id=test></div>"
|
|
|
|
return headers, content
|