From a1c7e6908a26e10f6e1f23a51721664b5e2d838d Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 02:53:53 +0900 Subject: chore(style): cargo fmt --- crates/shirabe/src/config/config_source_interface.rs | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/config/config_source_interface.rs') diff --git a/crates/shirabe/src/config/config_source_interface.rs b/crates/shirabe/src/config/config_source_interface.rs index 9f3321c..2a48635 100644 --- a/crates/shirabe/src/config/config_source_interface.rs +++ b/crates/shirabe/src/config/config_source_interface.rs @@ -4,9 +4,20 @@ use indexmap::IndexMap; use shirabe_php_shim::PhpMixed; pub trait ConfigSourceInterface { - fn add_repository(&mut self, name: &str, config: Option>, append: bool) -> anyhow::Result<()>; - - fn insert_repository(&mut self, name: &str, config: Option>, reference_name: &str, offset: i64) -> anyhow::Result<()>; + fn add_repository( + &mut self, + name: &str, + config: Option>, + append: bool, + ) -> anyhow::Result<()>; + + fn insert_repository( + &mut self, + name: &str, + config: Option>, + reference_name: &str, + offset: i64, + ) -> anyhow::Result<()>; fn set_repository_url(&mut self, name: &str, url: &str) -> anyhow::Result<()>; -- cgit v1.3.1