TDD: 1, Me: 0
This commit is contained in:
9
app/ui/__init__.py
Normal file
9
app/ui/__init__.py
Normal 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
|
||||
)
|
||||
Reference in New Issue
Block a user