kanban-app/backend/app/routes/__init__.py
2026-03-15 16:09:26 +03:00

5 lines
126 B
Python

from .api import api_bp
from .health import health_bp
from .home import home_bp
__all__ = ["api_bp", "health_bp", "home_bp"]