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"]