mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
4 lines
159 B
Python
4 lines
159 B
Python
def main(request, response):
|
|
headers = [("Content-Type", "text/javascript")]
|
|
body = "test1_token = \"script executed\";"
|
|
return 404, headers, body
|