mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-11 13:48:23 +02:00
MozReview-Commit-ID: FL37UKP6s3k --HG-- extra : rebase_source : e71da012708f2df179049cee9a1dedc875ff13af
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
|