2026-04-30 18:19:11 +00:00
|
|
|
# fmt: off
|
2026-02-26 10:02:37 +00:00
|
|
|
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
|
2026-04-30 18:19:11 +00:00
|
|
|
from . import (boards, card_links, cards, checklists, # noqa: F401 E402
|
|
|
|
|
comments, epics, files, labels, lists, wikis)
|
2026-02-26 10:02:37 +00:00
|
|
|
|
|
|
|
|
__all__ = ["kanban_bp"]
|
2026-04-30 18:19:11 +00:00
|
|
|
# fmt: on
|