From 6164ec6236a212f9ba223521c00a6b375bf5f180 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Mon, 2 Feb 2026 08:01:17 +0000 Subject: [PATCH] Add CLI commands and main entry point --- loglens/cli/__init__.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 loglens/cli/__init__.py diff --git a/loglens/cli/__init__.py b/loglens/cli/__init__.py new file mode 100644 index 0000000..edf5e06 --- /dev/null +++ b/loglens/cli/__init__.py @@ -0,0 +1,6 @@ +"""CLI package.""" + +from loglens.cli.main import main +from loglens.cli.commands import analyze, watch, report + +__all__ = ["main", "analyze", "watch", "report"]