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>
17 lines
378 B
Python
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
|