diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-05-22 22:10:19 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-06-17 21:02:05 +0800 |
| commit | 5a5a07c7fad31641d032a743e4e87ffb58ade17d (patch) | |
| tree | b6fbd33e8de82e5f9d9e6b99e3cb2102e47fe3ee /rola-vcs/src/lib.rs | |
Initial commitmain
Diffstat (limited to 'rola-vcs/src/lib.rs')
| -rw-r--r-- | rola-vcs/src/lib.rs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/rola-vcs/src/lib.rs b/rola-vcs/src/lib.rs new file mode 100644 index 0000000..7672ff9 --- /dev/null +++ b/rola-vcs/src/lib.rs @@ -0,0 +1,24 @@ +#![allow(dead_code)] + +mod bucket; + +mod abstracts; +pub use abstracts::*; + +mod workdraft; +pub use workdraft::*; + +mod tools; +pub use tools::*; + +mod err; +pub use err::*; + +#[doc(hidden)] +#[macro_export] +macro_rules! include_mod { + ($module:ident) => { + mod $module; + pub use $module::*; + }; +} |
