summaryrefslogtreecommitdiff
path: root/src/bin/jv.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-14 17:17:48 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-14 17:17:48 +0800
commit0cd19e64d4d255e45233255478ca3a0bd5c439ae (patch)
tree6bfa39c10731328edacc6b1c86ae49c85197f7ed /src/bin/jv.rs
parent24c2c8cad43c755cf668ea92a08c0be7fb3b819d (diff)
feat: add internationalization support and new command-line tools
- Add locale support with English and Chinese translations - Introduce new jv and jvv command-line tools - Replace jvc.rs with improved command structure - Add utility modules for language selection and markdown coloring - Update configuration and dependencies
Diffstat (limited to 'src/bin/jv.rs')
-rw-r--r--src/bin/jv.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/bin/jv.rs b/src/bin/jv.rs
new file mode 100644
index 0000000..f7ab768
--- /dev/null
+++ b/src/bin/jv.rs
@@ -0,0 +1,5 @@
+// Import i18n files
+rust_i18n::i18n!("locales", fallback = "en");
+
+#[tokio::main]
+async fn main() {}