Files
loglens-cli/loglens/cli/__init__.py
7000pctAUTO 45f44140ab
Some checks failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / test (3.9) (push) Has been cancelled
CI / lint (push) Has been cancelled
CI / build (push) Has been cancelled
CI / test (3.10) (push) Has been cancelled
fix: entry point correctly uses main_cli() with sys.exit() for proper exit codes
2026-02-02 11:41:32 +00:00

7 lines
160 B
Python

"""CLI package."""
from loglens.cli.commands import analyze, report, watch
from loglens.cli.main import main
__all__ = ["main", "analyze", "watch", "report"]