Add formatters module
Some checks failed
CI / test (push) Has been cancelled
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-29 13:24:03 +00:00
parent b05945ced4
commit d6fd00c572

View File

@@ -0,0 +1,7 @@
"""Formatters module for output generation."""
from contextgen.formatters.base import BaseFormatter
from contextgen.formatters.json_formatter import JSONFormatter
from contextgen.formatters.yaml_formatter import YAMLFormatter
__all__ = ["BaseFormatter", "JSONFormatter", "YAMLFormatter"]