updated first commit
This commit is contained in:
14
app/routes/__init__.py
Normal file
14
app/routes/__init__.py
Normal 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']
|
||||
Reference in New Issue
Block a user