Add converter modules (JSON, YAML, TOML, CSV)
Some checks failed
CI / test (push) Has been cancelled

This commit is contained in:
2026-02-01 19:01:11 +00:00
parent 11c066da50
commit 6b3f5018ee

15
src/main.py Normal file
View File

@@ -0,0 +1,15 @@
"""Main entry point for Data Format Converter."""
from rich.traceback import install
from src.cli import cli
def main():
"""Main entry point."""
install(show_locals=False)
cli()
if __name__ == "__main__":
main()