mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02: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"
|