(20251114) Both APIs ready for production test.

This commit is contained in:
2025-11-14 19:06:00 +05:30
parent 6ddc0e6966
commit a2f6390755
7 changed files with 440 additions and 56 deletions
+2
View File
@@ -63,6 +63,7 @@ from icecream import IceCreamDebugger
# All the blueprints:
from backend.api.blueprints.reports.in_out_report import in_out_report_bp
from backend.api.blueprints.reports.muster_roll import muster_roll_report_bp
# *****************************************************************************************************************
@@ -89,6 +90,7 @@ app = Quart(__name__)
app = cors(app)
# ---
app.register_blueprint(in_out_report_bp, url_prefix = f"/{MODULE_BASE}/reports/in-out")
app.register_blueprint(muster_roll_report_bp, url_prefix = f"/{MODULE_BASE}/reports/muster-roll")
# *****************************************************************************************************************