This commit is contained in:
Logan Cusano
2025-05-26 01:26:52 -04:00
parent 4c5085d98d
commit dab863db89
3 changed files with 3 additions and 3 deletions

View File

@@ -4,7 +4,7 @@ from werkzeug.exceptions import HTTPException
from internal.types import ActiveClient, DiscordId
from internal.db_wrappers import DiscordIdDbController
from quart_jwt_extended import jwt_required
from router.auth import role_required
from routers.auth import role_required
bot_bp = Blueprint('bot', __name__)

View File

@@ -7,7 +7,7 @@ from werkzeug.exceptions import HTTPException
from enum import Enum
from internal.types import ActiveClient, NodeCommands, UserRoles
from quart_jwt_extended import jwt_required
from router.auth import role_required
from routers.auth import role_required
nodes_bp = Blueprint('nodes', __name__)

View File

@@ -2,7 +2,7 @@ from quart import Blueprint, jsonify, request, abort, current_app
from werkzeug.exceptions import HTTPException
from internal.types import System
from quart_jwt_extended import jwt_required
from router.auth import role_required
from routers.auth import role_required
systems_bp = Blueprint('systems', __name__)