Initial commit

This commit is contained in:
2026-04-21 15:44:47 +00:00
commit bce3fe1395
40 changed files with 1758724 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
"""Public formatter entrypoints for raw trace inputs."""
SCHEMA_VERSION = "2026.04.21"
def main(argv=None):
from .cli import main as cli_main
return cli_main(argv)
__all__ = ["main"]