pub mod cards2pack;
pub mod deployer;
pub mod http_inject;
use thiserror::Error;
#[derive(Debug, Error)]
pub enum OrchestrateError {
#[error("orchestration target not yet implemented: {0}")]
NotImplemented(String),
#[error("cards2pack failed: {0}")]
Cards2Pack(String),
#[error("IO error: {0}")]
Io(#[from] std::io::Error),
}