""" 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