Compare commits
No commits in common. "8f3973c961909177139c5941ed75aa7c83f6b7a7" and "181dfb06a234a6bd007f4d6852d57dc50ef71fd4" have entirely different histories.
8f3973c961
...
181dfb06a2
@ -1,6 +1,7 @@
|
|||||||
from quart import Blueprint, ResponseReturnValue, render_template
|
from quart import Blueprint, render_template, ResponseReturnValue
|
||||||
from quart_rate_limiter import rate_exempt
|
from quart_rate_limiter import rate_exempt
|
||||||
|
|
||||||
|
|
||||||
blueprint = Blueprint("serving", __name__)
|
blueprint = Blueprint("serving", __name__)
|
||||||
|
|
||||||
|
|
||||||
|
@ -21,9 +21,9 @@ from quart_schema import QuartSchema, RequestSchemaValidationError
|
|||||||
# Each blueprint is a logical collection of features in our web app
|
# Each blueprint is a logical collection of features in our web app
|
||||||
from backend.blueprints.control import blueprint as control_blueprint
|
from backend.blueprints.control import blueprint as control_blueprint
|
||||||
from backend.blueprints.members import blueprint as members_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.sessions import blueprint as sessions_blueprint
|
||||||
from backend.blueprints.todos import blueprint as todos_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
|
# For making sure error responses are in JSON format
|
||||||
from backend.lib.api_error import APIError
|
from backend.lib.api_error import APIError
|
||||||
|
Loading…
x
Reference in New Issue
Block a user