Compare commits
5 Commits
181dfb06a2
...
8f3973c961
Author | SHA1 | Date | |
---|---|---|---|
8f3973c961 | |||
4e6f6f5e10 | |||
0688648d75 | |||
c8ba1f2676 | |||
7611c9c2fa |
@ -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
|
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