diff --git a/riklet/src/runtime/network/pod_network.rs b/riklet/src/runtime/network/pod_network.rs index 4fb9663c..cf9346a0 100644 --- a/riklet/src/runtime/network/pod_network.rs +++ b/riklet/src/runtime/network/pod_network.rs @@ -1,3 +1,4 @@ +use anyhow::Ok; use async_trait::async_trait; use std::fmt::Debug; @@ -15,10 +16,12 @@ impl PodRuntimeNetwork { #[async_trait] impl RuntimeNetwork for PodRuntimeNetwork { async fn init(&mut self) -> Result<()> { - todo!() + // todo!() + Result::Ok(()) } async fn destroy(&self) -> Result<()> { - todo!() + // todo!() + Result::Ok(()) } }