mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 01:43:08 +09:00
5 lines
168 B
Python
5 lines
168 B
Python
def main(request, response):
|
|
headers = [("Content-type", "application/xml;charset=windows-1252")]
|
|
content = '<' + chr(0xff) + '/>'
|
|
|
|
return headers, content
|