filesend/backend/app/routes/__init__.py

8 lines
233 B
Python
Raw Normal View History

2025-10-10 17:25:29 +08:00
from .auth import auth_bp
from .admin import admin_bp
from .user import user_bp
from .settings import settings_bp
from .team_leader import team_leader_bp
__all__ = ['auth_bp', 'admin_bp', 'user_bp', 'settings_bp', 'team_leader_bp']