From 79bcd3a9ce71954ce7b257e5f3ca1c147c0d974a Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 14:59:32 +0900 Subject: fix(compile): implement IOInterface and LoggerInterface for ConsoleIO - Move standalone pub fn methods into impl IOInterface for ConsoleIO - Add impl LoggerInterface for ConsoleIO delegating to BaseIO - Fix load_configuration signature to take &mut Config and return Result - Fix index::IndexMap import paths to indexmap::IndexMap in ConsoleIO and NullIO --- crates/shirabe/src/io/null_io.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'crates/shirabe/src/io/null_io.rs') diff --git a/crates/shirabe/src/io/null_io.rs b/crates/shirabe/src/io/null_io.rs index 66f7123..10d56a1 100644 --- a/crates/shirabe/src/io/null_io.rs +++ b/crates/shirabe/src/io/null_io.rs @@ -6,7 +6,7 @@ use shirabe_php_shim::PhpMixed; #[derive(Debug)] pub struct NullIO { - authentications: index::IndexMap>>, + authentications: indexmap::IndexMap>>, } impl IOInterface for NullIO { -- cgit v1.3.1