mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-10 18:58:37 +00:00
5 lines
159 B
Python
5 lines
159 B
Python
def main(request, response):
|
|
headers = [("Content-Type", "text/javascript")]
|
|
body = "test2_token = \"script executed\";"
|
|
return 200, headers, body
|