mirror of
https://github.com/servo/servo.git
synced 2025-06-29 11:33:39 +01:00
5 lines
169 B
Python
5 lines
169 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=utf-8")]
|
|
content = "<!doctype html><div id=test></div>"
|
|
|
|
return headers, content
|