"""
Matching Blueprint
Wires up the existing AIService smart matching to API endpoints
"""
from flask import Blueprint

matching_bp = Blueprint('matching', __name__, url_prefix='/api/matching')

from . import routes
