Refactor: Extract the quirks_path package as a standalone module and replace eyre with color-eyre.

This commit is contained in:
2025-01-05 23:51:31 +08:00
parent 40cbf86f0f
commit 2ed2b864b2
28 changed files with 231 additions and 2117 deletions

View File

@@ -19,7 +19,7 @@ where
container_label: &str,
prune: bool,
force: bool,
) -> eyre::Result<Self>;
) -> color_eyre::eyre::Result<Self>;
fn with_default_log_consumer(self) -> Self;
}
@@ -34,7 +34,7 @@ where
container_label: &str,
prune: bool,
force: bool,
) -> eyre::Result<Self> {
) -> color_eyre::eyre::Result<Self> {
use std::collections::HashMap;
use bollard::container::PruneContainersOptions;