Files
loglens-cli/loglens/formatters/__init__.py
7000pctAUTO 043ef10ec2
Some checks failed
CI / test (3.10) (push) Has started running
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
fix: add --version option to Click CLI group
- Added @click.version_option decorator to main() in commands.py
- Imported __version__ from loglens package
- Resolves CI build failure: 'loglens --version' command not found
2026-02-02 09:25:05 +00:00

7 lines
305 B
Python

from loglens.formatters.base import Formatter
from loglens.formatters.json_formatter import JSONFormatter
from loglens.formatters.table_formatter import TableFormatter
from loglens.formatters.text_formatter import TextFormatter
__all__ = ["Formatter", "JSONFormatter", "TableFormatter", "TextFormatter"]