""" Printer Check Module Blueprint. Cross-references CSV order sheets against PDF folder structures to identify matched, missing, and extra files per region/country. """ from flask import Blueprint printer_check_bp = Blueprint( 'printer_check', __name__, template_folder='templates', static_folder='static', static_url_path='/printer-check/static', url_prefix='/printer-check' ) from . import routes