diff options
| author | 魏曹先生 <1992414357@qq.com> | 2026-03-14 00:17:02 +0800 |
|---|---|---|
| committer | 魏曹先生 <1992414357@qq.com> | 2026-03-14 00:17:02 +0800 |
| commit | 709629d5d3ab856d9711aedbe32ceaafac5369af (patch) | |
| tree | 98be25d144bd2c451c5c3dc0df215c7b010db9d9 /systems/_framework/src | |
| parent | d213a4258ff6dd3475dbde8c98440735bade19fd (diff) | |
Add framework system and refactor module exports
Diffstat (limited to 'systems/_framework/src')
| -rw-r--r-- | systems/_framework/src/lib.rs | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/systems/_framework/src/lib.rs b/systems/_framework/src/lib.rs index b0a3f9b..80507d1 100644 --- a/systems/_framework/src/lib.rs +++ b/systems/_framework/src/lib.rs @@ -1,3 +1,6 @@ pub mod space; -#[allow(unused_imports)] -pub use space_macro::*; + +pub mod space_macro { + #[allow(unused_imports)] + pub use space_macro::*; +} |
