fix wrong import

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

View File

@ -6,7 +6,7 @@ import logging
from flask import Flask
from stream_auth import settings
from stream_auth.routes.user import user as user_routes
from stream_auth.routes.stream import user as stream_routes
from stream_auth.routes.stream import stream as stream_routes
app = Flask(__name__)