15 lines
417 B
Python
15 lines
417 B
Python
"""
|
|
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']
|