From 4e63aa2246c2f3ca6c09c284f7f78b896fe0e33b Mon Sep 17 00:00:00 2001 From: Alexander_Kabui Date: Thu, 9 Jan 2025 10:28:26 +0300 Subject: feat: Add and register streaming blueprint. --- gn3/api/streaming.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gn3/api/streaming.py') diff --git a/gn3/api/streaming.py b/gn3/api/streaming.py index 6569ceb..213d97f 100644 --- a/gn3/api/streaming.py +++ b/gn3/api/streaming.py @@ -5,11 +5,11 @@ from flask import jsonify from flask import Blueprint from flask import request -streaming = Blueprint("streaming", __name__) +streaming = Blueprint("stream", __name__) -@streaming.route("/stream/", methods=["GET"]) -def stream(identifier="output"): +@streaming.route("/", methods=["GET"]) +def stream(identifier): """ This endpoints streams stdout from a file expects the indetifier to be the file """ output_file = os.path.join(current_app.config.get("TMPDIR"), -- cgit 1.4.1