mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
5 lines
159 B
Python
5 lines
159 B
Python
def main(request, response):
|
|
headers = [("Content-Type", "text/javascript")]
|
|
body = "test1_token = \"script executed\";"
|
|
return 404, headers, body
|