Entry point for the semble command-line tool.
()
| 60 | |
| 61 | |
| 62 | def main() -> None: |
| 63 | """Entry point for the semble command-line tool.""" |
| 64 | if len(sys.argv) > 1 and sys.argv[1] in _CLI_DISPATCH_ARGS: |
| 65 | _cli_main() |
| 66 | else: |
| 67 | _mcp_main() |
| 68 | |
| 69 | |
| 70 | def _mcp_main() -> None: |