mirror of
https://github.com/affaan-m/ECC.git
synced 2026-09-09 19:27:58 +02: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()
|