mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +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"
|