Add formatters: table, JSON, text and config
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

This commit is contained in:
2026-02-02 08:06:09 +00:00
parent 2b10237f3c
commit 4ff3dfca62

View File

@@ -0,0 +1,13 @@
"""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",
]