From 11c066da50d2c7bb0545a8918077da292959a67f Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 19:01:10 +0000 Subject: [PATCH] Add converter modules (JSON, YAML, TOML, CSV) --- src/__init__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/__init__.py diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..6df4975 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1,3 @@ +"""Data Format Converter CLI Tool.""" + +__version__ = "1.0.0"