hm_ai_qc_report_tool/modules/video_master/blueprint.py
nickviljoen e6f3e9387e Add modular architecture, core framework, and web UI
New blueprint-based module system (hm_qc, video_qc, video_master,
reporting), core framework (database, config, templates), and
unified web interface with progress tracking and tab navigation.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-25 11:39:04 +02:00

17 lines
378 B
Python

"""
Video Master Adot Detection Blueprint (BETA).
Registers the Video Master module at /video-master URL prefix.
"""
from flask import Blueprint
video_master_bp = Blueprint(
'video_master',
__name__,
template_folder='templates',
static_folder='static',
url_prefix='/video-master'
)
# Import routes to register them with the blueprint
from . import routes