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