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