canaille-globuzma/canaille/core/blueprints.py
2023-08-14 15:28:20 +02:00

11 lines
255 B
Python

from flask import Blueprint
from . import account
from . import admin
from . import groups
bp = Blueprint("core", __name__, template_folder="templates")
bp.register_blueprint(account.bp)
bp.register_blueprint(admin.bp)
bp.register_blueprint(groups.bp)