From 6b3f5018ee2fc4c2f371d8d9ab0323f363974f30 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 19:01:11 +0000 Subject: [PATCH] Add converter modules (JSON, YAML, TOML, CSV) --- src/main.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 src/main.py diff --git a/src/main.py b/src/main.py new file mode 100644 index 0000000..3be174c --- /dev/null +++ b/src/main.py @@ -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()