mirror of
https://github.com/servo/servo
synced 2026-05-12 18:06:32 +02:00
5 lines
162 B
Python
5 lines
162 B
Python
def main(request, response):
|
|
headers = [(b"Content-Type", b"text/javascript")]
|
|
body = u"test2_token = \"script executed\";"
|
|
return 200, headers, body
|