mirror of
https://github.com/servo/servo
synced 2026-05-11 01:22:19 +02:00
5 lines
180 B
Python
5 lines
180 B
Python
def main(request, response):
|
|
headers = [("Content-Type", "text/javascript"), ("Cache-control", "public, max-age=100")]
|
|
body = "throw('fox');"
|
|
return 200, headers, body
|