mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-03 18:51:46 +00:00
5 lines
184 B
Python
5 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"
|