2023-08-14 11:52:24 +00:00
|
|
|
from flask import Blueprint
|
|
|
|
|
|
|
|
from . import account
|
|
|
|
from . import admin
|
2023-08-14 14:15:41 +00:00
|
|
|
from . import auth
|
2023-08-14 11:52:24 +00:00
|
|
|
from . import groups
|
|
|
|
|
2023-08-14 13:28:20 +00:00
|
|
|
bp = Blueprint("core", __name__, template_folder="templates")
|
2023-08-14 11:52:24 +00:00
|
|
|
|
|
|
|
bp.register_blueprint(account.bp)
|
|
|
|
bp.register_blueprint(admin.bp)
|
2023-08-14 14:15:41 +00:00
|
|
|
bp.register_blueprint(auth.bp)
|
2023-08-14 11:52:24 +00:00
|
|
|
bp.register_blueprint(groups.bp)
|