mirror of
https://github.com/servo/servo.git
synced 2025-07-04 05:53:39 +01:00
5 lines
154 B
Python
5 lines
154 B
Python
def main(request, response):
|
|
headers = []
|
|
headers.append(("Access-Control-Allow-Origin", "*"))
|
|
|
|
return headers, "{ \"result\": \"success\" }"
|