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

4 lines
88 B
Python
Raw Normal View History

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