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/setups.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'mingling/src/setups.rs') diff --git a/mingling/src/setups.rs b/mingling/src/setups.rs index 5546268..e572cf5 100644 --- a/mingling/src/setups.rs +++ b/mingling/src/setups.rs @@ -1,6 +1,9 @@ mod basic; pub use basic::*; +mod dirs; +pub use dirs::*; + mod exit_code; pub use exit_code::*; -- cgit