15 lines
360 B
Python
15 lines
360 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, labels, # noqa: F401 E402
|
||
|
|
lists)
|
||
|
|
|
||
|
|
# fmt: on
|
||
|
|
|
||
|
|
__all__ = ["kanban_bp"]
|