kv-tube/app/routes/__init__.py
2026-01-12 09:41:27 +07:00

9 lines
248 B
Python
Executable file

"""
KV-Tube Routes Package
Exports all Blueprints for registration
"""
from app.routes.pages import pages_bp
from app.routes.api import api_bp
from app.routes.streaming import streaming_bp
__all__ = ['pages_bp', 'api_bp', 'streaming_bp']