mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
create hypha
This commit is contained in:
9
hypha/bin/agent.rs
Normal file
9
hypha/bin/agent.rs
Normal 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
5
hypha/bin/container.rs
Normal file
@ -0,0 +1,5 @@
|
||||
use hypha::error::Result;
|
||||
|
||||
fn main() -> Result<()> {
|
||||
Ok(())
|
||||
}
|
Reference in New Issue
Block a user