Files
loglens-cli/loglens/__main__.py
7000pctAUTO 1e90a21b7d
Some checks failed
CI / test (3.10) (push) Failing after 4m51s
CI / test (3.11) (push) Failing after 4m54s
CI / test (3.12) (push) Failing after 4m52s
CI / test (3.9) (push) Failing after 4m50s
CI / lint (push) Failing after 4m46s
CI / build (push) Has been skipped
fix: correct __main__.py entry point to use main_cli function
2026-02-02 10:40:57 +00:00

9 lines
139 B
Python

"""Entry point for LogLens CLI."""
import sys
from loglens.cli.main import main_cli
if __name__ == "__main__":
sys.exit(main_cli())