Skip to content

Commit

Permalink
fix: make the riklet ok when a pod instance is created
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyLARDENOIS authored and alexandrebrg committed Apr 24, 2023
1 parent eb79143 commit 50a7b27
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions riklet/src/runtime/network/pod_network.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use anyhow::Ok;
use async_trait::async_trait;
use std::fmt::Debug;

Expand All @@ -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(())
}
}

0 comments on commit 50a7b27

Please sign in to comment.