summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2025-10-24 14:47:20 +0800
committer魏曹先生 <1992414357@qq.com>2025-10-24 14:47:20 +0800
commitb2c45bf5c16391917caccd703ac85b80c5c77cca (patch)
tree39cf3eb5af8e313ef370c2ecdcabffe18dbd057a /src
parent49ad7a152cf849c8d91ee6b686da31f9c252f77c (diff)
Re-export subcrate `action_system` to `just_enough_vcs`
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 29855e3..4771dcd 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,13 +1,19 @@
// Feature `vcs`
#[cfg(feature = "vcs")]
pub mod vcs {
- extern crate vcs_data;
+ pub extern crate vcs_data;
pub use vcs_data::*;
- extern crate vcs_actions;
+ pub extern crate vcs_actions;
pub use vcs_actions::*;
}
+pub mod system {
+ pub mod action_system {
+ pub use action_system::*;
+ }
+}
+
pub mod utils {
// Feature `tcp_connection`
#[cfg(feature = "tcp_connection")]