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