Files
WOL-LY/app/ui/__init__.py
2024-12-13 18:08:44 +02:00

10 lines
280 B
Python

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
)