summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-03-14 00:17:02 +0800
committer魏曹先生 <1992414357@qq.com>2026-03-14 00:17:02 +0800
commit709629d5d3ab856d9711aedbe32ceaafac5369af (patch)
tree98be25d144bd2c451c5c3dc0df215c7b010db9d9 /src/lib.rs
parentd213a4258ff6dd3475dbde8c98440735bade19fd (diff)
Add framework system and refactor module exports
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs25
1 files changed, 19 insertions, 6 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 5609c2e..bd3f9ef 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -16,10 +16,6 @@ pub mod lib {
#[cfg(feature = "lib")]
pub mod system {
- pub mod constants {
- pub use constants::*;
- }
-
pub mod asset_system {
pub use asset_system::*;
}
@@ -32,8 +28,25 @@ pub mod system {
pub use sheet_system::*;
}
- pub mod storage_system {
- pub use storage_system::*;
+ pub mod config_system {
+ pub use config_system::*;
+ }
+
+ pub mod constants {
+ pub use constants::*;
+ }
+
+ pub mod space {
+ pub use framework::space::*;
+ pub use framework::space_macro::*;
+ }
+
+ pub mod workspace {
+ pub use workspace_system::*;
+ }
+
+ pub mod vault {
+ pub use vault_system::*;
}
}