feat: initial Flask project setup with factory pattern
This commit is contained in:
0
app/routes/__init__.py
Normal file
0
app/routes/__init__.py
Normal file
BIN
app/routes/__pycache__/__init__.cpython-314.pyc
Normal file
BIN
app/routes/__pycache__/__init__.cpython-314.pyc
Normal file
Binary file not shown.
BIN
app/routes/__pycache__/dashboard.cpython-314.pyc
Normal file
BIN
app/routes/__pycache__/dashboard.cpython-314.pyc
Normal file
Binary file not shown.
BIN
app/routes/__pycache__/entries.cpython-314.pyc
Normal file
BIN
app/routes/__pycache__/entries.cpython-314.pyc
Normal file
Binary file not shown.
BIN
app/routes/__pycache__/reports.cpython-314.pyc
Normal file
BIN
app/routes/__pycache__/reports.cpython-314.pyc
Normal file
Binary file not shown.
3
app/routes/dashboard.py
Normal file
3
app/routes/dashboard.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from flask import Blueprint
|
||||
|
||||
bp = Blueprint("dashboard", __name__)
|
||||
3
app/routes/entries.py
Normal file
3
app/routes/entries.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from flask import Blueprint
|
||||
|
||||
bp = Blueprint("entries", __name__)
|
||||
3
app/routes/reports.py
Normal file
3
app/routes/reports.py
Normal file
@@ -0,0 +1,3 @@
|
||||
from flask import Blueprint
|
||||
|
||||
bp = Blueprint("reports", __name__)
|
||||
Reference in New Issue
Block a user