mirror of
https://github.com/servo/servo.git
synced 2025-07-24 15:50:21 +01:00
4 lines
168 B
Python
4 lines
168 B
Python
def main(request, response):
|
|
response.headers.set("Content-Type", "text/javascript")
|
|
response.headers.set("Custom", "\0")
|
|
return "var thisIsJavaScript = 0"
|