diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-20 09:54:30 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-20 09:54:30 +0900 |
| commit | 2914770fba6b3cc03a68fae493f60470a41962ec (patch) | |
| tree | 90802d00854c302899af4d8efe0e824e62e5b9db /crates/shirabe/src/installer/library_installer.rs | |
| parent | 44b443282644fc631ce722baf6d143f354dc62d3 (diff) | |
| download | php-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.tar.gz php-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.tar.zst php-shirabe-2914770fba6b3cc03a68fae493f60470a41962ec.zip | |
refactor: re-export module items to shorten import paths
Diffstat (limited to 'crates/shirabe/src/installer/library_installer.rs')
| -rw-r--r-- | crates/shirabe/src/installer/library_installer.rs | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/crates/shirabe/src/installer/library_installer.rs b/crates/shirabe/src/installer/library_installer.rs index fc79bdd..0b4ba78 100644 --- a/crates/shirabe/src/installer/library_installer.rs +++ b/crates/shirabe/src/installer/library_installer.rs @@ -3,24 +3,24 @@ use std::any::Any; use anyhow::Result; -use shirabe_external_packages::composer::pcre::preg::Preg; -use shirabe_external_packages::react::promise::promise_interface::PromiseInterface; +use shirabe_external_packages::composer::pcre::Preg; +use shirabe_external_packages::react::promise::PromiseInterface; use shirabe_php_shim::{ InvalidArgumentException, LogicException, is_link, preg_quote, realpath, rmdir, rtrim, strpos, }; use crate::composer::Composer; -use crate::downloader::download_manager::DownloadManager; -use crate::installer::binary_installer::BinaryInstaller; -use crate::installer::binary_presence_interface::BinaryPresenceInterface; -use crate::installer::installer_interface::InstallerInterface; -use crate::io::io_interface::IOInterface; -use crate::package::package_interface::PackageInterface; +use crate::downloader::DownloadManager; +use crate::installer::BinaryInstaller; +use crate::installer::BinaryPresenceInterface; +use crate::installer::InstallerInterface; +use crate::io::IOInterface; +use crate::package::PackageInterface; use crate::partial_composer::PartialComposer; -use crate::repository::installed_repository_interface::InstalledRepositoryInterface; -use crate::util::filesystem::Filesystem; -use crate::util::platform::Platform; -use crate::util::silencer::Silencer; +use crate::repository::InstalledRepositoryInterface; +use crate::util::Filesystem; +use crate::util::Platform; +use crate::util::Silencer; /// Package installation manager. #[derive(Debug)] |
