mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-04-14 04:48:38 +08:00
8 lines
128 B
Python
8 lines
128 B
Python
#!/usr/bin/env python3
|
|
"""Entry point for llm CLI."""
|
|
|
|
from llm.cli.selector import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|