TDD: 1, Me: 0

This commit is contained in:
2024-12-13 18:08:44 +02:00
commit 9c1cfa7c23
36 changed files with 2374 additions and 0 deletions

9
app/ui/__init__.py Normal file
View File

@@ -0,0 +1,9 @@
from flask import Blueprint
ui_bp = Blueprint(
'ui',
__name__,
template_folder='templates', # Path to your HTML templates folder
static_folder='static', # Path to your static files folder
static_url_path='/ui/static' # URL path to access static files
)