mirror of
https://github.com/servo/servo.git
synced 2025-07-13 02:13:40 +01: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"
|