From 353fdc5b539aae0479c7404d0ed6404f82bf633a Mon Sep 17 00:00:00 2001 From: 魏曹先生 <1992414357@qq.com> Date: Sat, 27 Jun 2026 18:52:49 +0800 Subject: 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. --- mingling/src/res/dirs.rs | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 mingling/src/res/dirs.rs (limited to 'mingling/src/res/dirs.rs') diff --git a/mingling/src/res/dirs.rs b/mingling/src/res/dirs.rs new file mode 100644 index 0000000..0a0a590 --- /dev/null +++ b/mingling/src/res/dirs.rs @@ -0,0 +1,11 @@ +mod current_dir; +pub use current_dir::*; + +mod current_exe; +pub use current_exe::*; + +mod temp_dir; +pub use temp_dir::*; + +mod home_dir; +pub use home_dir::*; -- cgit