From 1293ea92bdbf3eb2086ec117e355714b6ee54ae9 Mon Sep 17 00:00:00 2001 From: A Farzat Date: Mon, 22 Jun 2026 19:56:40 +0300 Subject: Make Logger's output destination customizable This aids in testing and might allow logging to a file at a later point. --- src/util/mod.rs | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/util/mod.rs') diff --git a/src/util/mod.rs b/src/util/mod.rs index eda8605..d038ae8 100644 --- a/src/util/mod.rs +++ b/src/util/mod.rs @@ -2,3 +2,6 @@ pub mod fence; pub mod language; pub mod path_display; pub mod path_list; + +#[cfg(test)] +pub(crate) mod test_support; -- cgit v1.3.1