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

15 lines
367 B
Python
Raw Normal View History

from flask import Blueprint
# Create the kanban blueprint that will be used by all route modules
kanban_bp = Blueprint("kanban", __name__)
# Import all route modules to register their routes to this blueprint
# fmt: off
2026-03-20 17:17:01 +00:00
from . import (boards, cards, checklists, comments, files, # noqa: F401 E402
labels, lists)
# fmt: on
__all__ = ["kanban_bp"]