summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-18 18:23:40 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-18 18:23:40 +0800
commit71b65668f6b3619e33ede0c042a2ad9ad5ffe415 (patch)
treecc7d1b153518b0a1e149ba8f40fcfc26916d951c
parent578c51b243895b32a01b9bbade249fa20b72ebdd (diff)
refactor: update source code files
- Update jv.rs binary - Update lib.rs library exports - Update utils.rs utility functions
-rw-r--r--src/bin/jv.rs4
-rw-r--r--src/lib.rs6
-rw-r--r--src/utils.rs1
3 files changed, 4 insertions, 7 deletions
diff --git a/src/bin/jv.rs b/src/bin/jv.rs
index f7ab768..a8b0a1f 100644
--- a/src/bin/jv.rs
+++ b/src/bin/jv.rs
@@ -2,4 +2,6 @@
rust_i18n::i18n!("locales", fallback = "en");
#[tokio::main]
-async fn main() {}
+async fn main() {
+ println!("Hello, World!")
+}
diff --git a/src/lib.rs b/src/lib.rs
index c82b04b..4083028 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,8 +1,2 @@
-/// JustEnoughVCS - Local Manager & Client
-pub mod jv;
-
-/// JustEnoughVCS - Vault Manager & Server
-pub mod jvv;
-
/// Utils
pub mod utils;
diff --git a/src/utils.rs b/src/utils.rs
index 0446ece..87cc1b4 100644
--- a/src/utils.rs
+++ b/src/utils.rs
@@ -1,2 +1,3 @@
+pub mod build_env_logger;
pub mod lang_selector;
pub mod md_colored;