""" HM QC Module Blueprint. Provides quality control for H&M marketing assets: - PDF and image upload - Profile-based QC checks with scoring - Weighted overall scores (0-100) - Sophisticated AI-powered checks - Real-time progress tracking - HTML report generation with database storage """ from flask import Blueprint # Create blueprint hm_qc_bp = Blueprint( 'hm_qc', __name__, template_folder='templates', static_folder='static', static_url_path='/hm-qc/static', url_prefix='/hm-qc' ) # Import routes after blueprint creation to avoid circular imports from . import routes