This repository has been archived on 2021-12-24. You can view files and clone it, but cannot push or open issues/pull-requests.
jos/app/api/__init__.py

9 lines
270 B
Python
Raw Normal View History

2021-05-18 23:12:00 +02:00
"""Module containing all Flask-related code."""
from quart import Blueprint
from .search import blueprint as search_blueprint
# Main blueprint exposing entire API
blueprint = Blueprint("api", __name__, url_prefix="/api")
blueprint.register_blueprint(search_blueprint)