16 lines
391 B
Python
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())
|