diff --git a/backend/src/backend/blueprints/serving.py b/backend/src/backend/blueprints/serving.py index bc805f1..62f0e76 100644 --- a/backend/src/backend/blueprints/serving.py +++ b/backend/src/backend/blueprints/serving.py @@ -1,7 +1,6 @@ -from quart import Blueprint, render_template, ResponseReturnValue +from quart import Blueprint, ResponseReturnValue, render_template from quart_rate_limiter import rate_exempt - blueprint = Blueprint("serving", __name__) diff --git a/backend/src/backend/run.py b/backend/src/backend/run.py index 493449b..e90964e 100644 --- a/backend/src/backend/run.py +++ b/backend/src/backend/run.py @@ -21,9 +21,9 @@ from quart_schema import QuartSchema, RequestSchemaValidationError # Each blueprint is a logical collection of features in our web app from backend.blueprints.control import blueprint as control_blueprint from backend.blueprints.members import blueprint as members_blueprint +from backend.blueprints.serving import blueprint as serving_blueprint from backend.blueprints.sessions import blueprint as sessions_blueprint from backend.blueprints.todos import blueprint as todos_blueprint -from backend.blueprints.serving import blueprint as serving_blueprint # For making sure error responses are in JSON format from backend.lib.api_error import APIError