mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +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"
|