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/repository/vcs/vcs_driver_interface.rs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'crates/shirabe/src/repository/vcs/vcs_driver_interface.rs') diff --git a/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs b/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs index a17acad..5b15c2c 100644 --- a/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs +++ b/crates/shirabe/src/repository/vcs/vcs_driver_interface.rs @@ -1,15 +1,18 @@ //! ref: composer/src/Composer/Repository/Vcs/VcsDriverInterface.php +use crate::config::Config; +use crate::io::io_interface::IOInterface; use chrono::{DateTime, Utc}; use indexmap::IndexMap; use shirabe_php_shim::PhpMixed; -use crate::config::Config; -use crate::io::io_interface::IOInterface; pub trait VcsDriverInterface { fn initialize(&mut self) -> anyhow::Result<()>; - fn get_composer_information(&self, identifier: &str) -> anyhow::Result>>; + fn get_composer_information( + &self, + identifier: &str, + ) -> anyhow::Result>>; fn get_file_content(&self, file: &str, identifier: &str) -> anyhow::Result>; -- cgit v1.3.1