13 lines
263 B
Python
13 lines
263 B
Python
"""Smart Assistant client entry point.
|
|
|
|
The composition root lives in main(); see Plan 3 Task 11 for the full wiring.
|
|
"""
|
|
|
|
|
|
def main() -> None:
|
|
raise SystemExit("client.main: not yet implemented (see Plan 3 Task 11).")
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|