kanban-app/backend/app/routes/__init__.py

6 lines
126 B
Python
Raw Normal View History

from .api import api_bp
from .health import health_bp
2026-03-15 12:52:44 +00:00
from .home import home_bp
2026-03-15 12:52:44 +00:00
__all__ = ["api_bp", "health_bp", "home_bp"]