Add formatters: table, JSON, text and config
Some checks failed
Some checks failed
This commit is contained in:
13
loglens/formatters/__init__.py
Normal file
13
loglens/formatters/__init__.py
Normal 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",
|
||||||
|
]
|
||||||
Reference in New Issue
Block a user