5 lines
211 B
Python
5 lines
211 B
Python
def main(request, response):
|
|
response.headers.set(b"Content-Type", b"text/plain")
|
|
response.headers.set(b"Access-Control-Allow-Origin", b"*")
|
|
|
|
response.content = b"PASS: Cross-domain access allowed."
|