From 8de534f647df06df0f838eaab7601955d784e6a5 Mon Sep 17 00:00:00 2001 From: Clay McLeod Date: Wed, 4 Dec 2024 16:43:14 -0600 Subject: [PATCH] chore: removes unneeded Docker initialization functions --- crankshaft-engine/src/lib.rs | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/crankshaft-engine/src/lib.rs b/crankshaft-engine/src/lib.rs index 728dfee..c3ad032 100644 --- a/crankshaft-engine/src/lib.rs +++ b/crankshaft-engine/src/lib.rs @@ -49,20 +49,6 @@ impl Engine { Ok(self) } - // /// Adds a _default_ Docker backend to a [`Engine`] with the provided - // /// [`Config`](DockerConfig). - // pub async fn with_default_docker(self, config: DockerConfig) -> Result - // { let backend = docker::Backend::initialize_default_with(config)?; - // Ok(self.with(backend.default_name(), backend)) - // } - - // /// Adds a _default_ Docker backend to a [`Engine`] with the default - // /// [`Config`](DockerConfig). - // pub fn with_default_docker_and_config(self) -> Result { - // let backend = docker::Backend::initialize_default()?; - // Ok(self.with(backend.default_name(), backend)) - // } - /// Gets the names of the runners. pub fn runners(&self) -> impl Iterator { self.runners.keys().map(|key| key.as_ref())