updated first commit

This commit is contained in:
2025-07-16 08:03:57 +03:00
parent 78641b633a
commit c36ba9dc64
34 changed files with 3938 additions and 0 deletions

14
app/routes/__init__.py Normal file
View File

@@ -0,0 +1,14 @@
"""
Routes package
"""
# Import all blueprints to make them available
from .auth import bp as auth_bp
from .dashboard import bp as dashboard_bp
from .admin import bp as admin_bp
from .player import bp as player_bp
from .group import bp as group_bp
from .content import bp as content_bp
from .api import bp as api_bp
__all__ = ['auth_bp', 'dashboard_bp', 'admin_bp', 'player_bp', 'group_bp', 'content_bp', 'api_bp']