fix wrong blueprint name

This commit is contained in:
Carneiro 2023-10-04 21:32:21 -03:00
parent 6a622f13d7
commit 24718abb92
1 changed files with 1 additions and 1 deletions

View File

@ -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'])