mirror of
https://github.com/Jeuners/ECC.git
synced 2026-09-09 15:02:30 +02:00
7 lines
128 B
Python
7 lines
128 B
Python
#!/usr/bin/env python3
|
|
"""Entry point for llm CLI."""
|
|
|
|
from llm.cli.selector import main
|
|
|
|
if __name__ == "__main__":
|
|
main()
|