10 lines
207 B
Python
10 lines
207 B
Python
"""Smart Assistant pairing CLI. Implemented in Plan 3."""
|
|
|
|
|
|
def main() -> None:
|
|
raise SystemExit("client.pair: placeholder; full implementation comes in Plan 3.")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|