"""
Contract Dispute Blueprint
Handles contract dispute resolution
"""

from flask import Blueprint

# Create the blueprint
contract_dispute_bp = Blueprint('contract_dispute', __name__)

# Import routes to register them
from . import routes