feat: add container hashmap

This commit is contained in:
Alexander Navarro 2025-06-25 16:14:35 -04:00
commit bb1784f259
12 changed files with 1511 additions and 0 deletions

15
src/error.rs Normal file
View file

@ -0,0 +1,15 @@
use thiserror::Error;
pub type Result<T> = std::result::Result<T, self::Error>;
#[derive(Error, Debug)]
pub enum Error {
#[error("Unhandled error: {0}")]
Static(&'static str),
#[error("Unhandled error: {0}")]
Generic(String),
#[error(transparent)]
Docker(#[from] bollard::errors::Error),
}