7 lines
160 B
Python
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"]
|