mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-21 03:43:16 +09:00
5 lines
172 B
Python
5 lines
172 B
Python
import urllib
|
|
|
|
def main(request, response):
|
|
response.headers.set('Set-Cookie', urllib.unquote(request.url_parts.query))
|
|
return [("Content-Type", "text/plain")], ""
|