7 lines
248 B
Python
7 lines
248 B
Python
from app.routes.auth import bp as auth_bp
|
|
from app.routes.dashboard import bp as dashboard_bp
|
|
from app.routes.settings import bp as settings_bp
|
|
from app.routes.api import bp as api_bp
|
|
|
|
__all__ = ['auth_bp', 'dashboard_bp', 'settings_bp', 'api_bp']
|