This commit is contained in:
2022-12-30 16:23:27 +00:00
parent 7ff6cf2451
commit 98bae4c86c
1304 changed files with 870224 additions and 0 deletions

View File

@ -0,0 +1,8 @@
from flask import Blueprint
dashboard_bp = Blueprint(
name="dashboard",
import_name=__name__,
url_prefix="/dashboard",
template_folder="templates",
)