from flask import Blueprint

api_bp = Blueprint('api', __name__)

from app.blueprints.api import routes  # noqa: F401, E402
