Files
loglens-cli/loglens/formatters/__init__.py
7000pctAUTO 4ff3dfca62
Some checks failed
CI / test (3.11) (push) Has been cancelled
CI / test (3.10) (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
Add formatters: table, JSON, text and config
2026-02-02 08:06:09 +00:00

14 lines
370 B
Python

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