create hypha

This commit is contained in:
Alex Zenla
2024-01-17 08:18:12 -08:00
parent 135182d847
commit 8689398032
8 changed files with 134 additions and 1 deletions

9
hypha/bin/agent.rs Normal file
View File

@ -0,0 +1,9 @@
use hypha::agent::Agent;
use hypha::error::Result;
fn main() -> Result<()> {
let mut agent = Agent::new()?;
let domid = agent.launch()?;
println!("launched domain: {}", domid);
Ok(())
}

5
hypha/bin/container.rs Normal file
View File

@ -0,0 +1,5 @@
use hypha::error::Result;
fn main() -> Result<()> {
Ok(())
}