mirror of
https://github.com/classilla/tenfourfox.git
synced 2026-03-11 07:42:00 +00:00
6 lines
161 B
Python
6 lines
161 B
Python
def main(request, response):
|
|
headers = [("Content-type", "text/html;charset=utf-8")]
|
|
content = "<!DOCTYPE html><div></div>"
|
|
|
|
return headers, content
|