summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-06 04:12:15 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-06 04:12:15 +0800
commit85f7c35d6c573b715c166fe7501225ecab6731ea (patch)
tree304075598071f55cb9dc15dc7ac8d9b8740e511e /src/lib.rs
parent8ef9f06df67d3ad2d1d1a9038ee93e26ec615489 (diff)
Update main lib.rs for new crate architecture
- Remove old vcs module exports - Prepare for new vcs_data and vcs_actions integration - Update library structure to reflect architectural changes
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3a6c652..746f66f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -3,6 +3,9 @@
pub mod vcs {
extern crate vcs;
pub use vcs::*;
+
+ extern crate vcs_actions;
+ pub use vcs_actions::*;
}
pub mod utils {