mirror of
https://github.com/servo/servo.git
synced 2025-10-12 14:30:25 +01:00
4 lines
179 B
Python
4 lines
179 B
Python
def main(request, response):
|
|
response.headers.set("Content-Type", "text/html")
|
|
response.headers.set("Custom", "\0")
|
|
return "<!doctype html><b>This is a document.</b>"
|