mirror of
https://github.com/servo/servo.git
synced 2025-07-11 17:33:47 +01:00
6 lines
228 B
Python
Executable file
6 lines
228 B
Python
Executable file
#!/usr/bin/env python
|
|
def main(request, response):
|
|
response.headers.set("Content-Type", "text/plain")
|
|
response.headers.set("Access-Control-Allow-Origin", "*")
|
|
|
|
response.content = "PASS: Cross-domain access allowed."
|