forked from Github-Mirrors/canaille
12 lines
226 B
Python
12 lines
226 B
Python
![]() |
from flask import Blueprint
|
||
|
|
||
|
from . import account
|
||
|
from . import admin
|
||
|
from . import groups
|
||
|
|
||
|
bp = Blueprint("core", __name__)
|
||
|
|
||
|
bp.register_blueprint(account.bp)
|
||
|
bp.register_blueprint(admin.bp)
|
||
|
bp.register_blueprint(groups.bp)
|