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
240 B
Python
Raw Permalink Normal View History

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