This commit is contained in:
2026-02-06 16:03:55 -05:00
parent 4525a90302
commit 7a4159b013
24 changed files with 686 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from flask import Blueprint
bp = Blueprint('inspections', __name__, url_prefix='/inspections')
@bp.route('/')
def index():
return "Inspections module - Coming in Phase 2"