mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
4 lines
184 B
Python
4 lines
184 B
Python
def main(request, response):
|
|
status = (request.GET.first("status", "404"), "HAHAHAHA")
|
|
headers = [("Content-Type", "text/event-stream")]
|
|
return status, headers, "data: data\n\n"
|