10 lines
280 B
Python
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
|
|
)
|