Files
clientflow_backend/scripts/test_operational_flow.py
2026-06-09 22:55:58 +01:00

16 lines
391 B
Python

#!/usr/bin/env python3
"""Smoke placeholder for the clean ClientFlow operational architecture.
Operational progression is represented by business_events and operation_links,
not by extra triage action_codes.
"""
def main() -> int:
print("Use API/UI smoke tests against current action codes and operation_links.")
return 0
if __name__ == "__main__":
raise SystemExit(main())