From 24718abb9206bc722bc724db3f65de5737e16d97 Mon Sep 17 00:00:00 2001 From: Gabriel Carneiro Date: Wed, 4 Oct 2023 21:32:21 -0300 Subject: [PATCH] fix wrong blueprint name --- src/stream_auth/routes/stream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stream_auth/routes/stream.py b/src/stream_auth/routes/stream.py index a0785fa..dc04929 100644 --- a/src/stream_auth/routes/stream.py +++ b/src/stream_auth/routes/stream.py @@ -9,7 +9,7 @@ from stream_auth.middlewares import jwt from stream_auth.models.stream import Stream as StreamModel from stream_auth.database import user -stream = Blueprint('user', __name__) +stream = Blueprint('stream', __name__) @stream.route('/create_stream', methods=['POST'])