kanban-app/backend/app/routes/kanban/__init__.py
2026-03-21 23:54:09 +03:00

14 lines
367 B
Python

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
from . import (boards, cards, checklists, comments, files, # noqa: F401 E402
labels, lists)
# fmt: on
__all__ = ["kanban_bp"]