#10 Started on the admin endpoints

This commit is contained in:
2024-02-12 19:28:15 +00:00
parent 7faca50b73
commit cc9aaff6e1
2 changed files with 23 additions and 0 deletions

View File

@@ -6,12 +6,14 @@ from flask import redirect, Blueprint, session
from . import user
from . import product
from . import stats
from . import admin
blueprint = Blueprint('main', __name__)
blueprint.register_blueprint(user.blueprint)
blueprint.register_blueprint(product.blueprint)
blueprint.register_blueprint(stats.blueprint)
blueprint.register_blueprint(admin.blueprint)
# CONTEXTS #