aboutsummaryrefslogtreecommitdiff
path: root/mingling/src/res.rs
diff options
context:
space:
mode:
author魏曹先生 <1992414357@qq.com>2026-06-27 18:52:49 +0800
committer魏曹先生 <1992414357@qq.com>2026-06-27 18:52:49 +0800
commit353fdc5b539aae0479c7404d0ed6404f82bf633a (patch)
tree0f0f07080aebf2ad8f0be537c7bc855618d89df6 /mingling/src/res.rs
parent5a23e6b3ad655b15b412720ab81b0508866bebce (diff)
feat(mingling): add directory environment resources and setup
Add four new resource types for common directory paths and a convenience setup struct that registers all of them at once.
Diffstat (limited to 'mingling/src/res.rs')
-rw-r--r--mingling/src/res.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/mingling/src/res.rs b/mingling/src/res.rs
index 982fe91..1dd00aa 100644
--- a/mingling/src/res.rs
+++ b/mingling/src/res.rs
@@ -1,5 +1,8 @@
mod exit_code;
pub use exit_code::*;
+mod dirs;
+pub use dirs::*;
+
#[allow(unused_imports)]
pub use mingling_core::core_res::*;