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