mirror of
https://github.com/servo/servo
synced 2026-05-15 03:16:47 +02:00
5 lines
167 B
Python
5 lines
167 B
Python
def main(request, response):
|
|
headers = [("Content-type", request.GET.first("mime"))]
|
|
content = "console.log('Script loaded')"
|
|
return 200, headers, content
|