feat: initial support for idm send in daemon

This commit is contained in:
Alex Zenla
2024-04-10 09:26:00 +00:00
parent ec9060d872
commit 092a243a83
5 changed files with 75 additions and 64 deletions

View File

@ -23,6 +23,8 @@ async fn main() -> Result<()> {
if let Err(error) = guest.init().await {
error!("failed to initialize guest: {}", error);
death(127).await?;
return Ok(());
}
death(1).await?;
Ok(())
}