10 lines
206 B
Python
10 lines
206 B
Python
"""Pairing CLI; see Plan 3 Task 6 for the full implementation."""
|
|
|
|
|
|
def main() -> None:
|
|
raise SystemExit("client.pair: not yet implemented (see Plan 3 Task 6).")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|