Files
loglens-cli/loglens/__main__.py
7000pctAUTO c60b4c14be
Some checks failed
CI / test (3.10) (push) Failing after 4m49s
CI / test (3.11) (push) Failing after 4m54s
CI / test (3.12) (push) Failing after 4m55s
CI / test (3.9) (push) Failing after 4m53s
CI / lint (push) Failing after 4m45s
CI / build (push) Has been skipped
fix: correct entry point to use main_cli() for proper exit codes
2026-02-02 11:07:12 +00:00

9 lines
135 B
Python

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