Files
LT_Janitorial_Quality_Control/app/routes/reports.py
T
2026-02-06 16:03:55 -05:00

8 lines
165 B
Python

from flask import Blueprint
bp = Blueprint('reports', __name__, url_prefix='/reports')
@bp.route('/')
def index():
return "Reports module - Coming in Phase 2"