mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-03 13:11:31 +00:00
10 lines
203 B
Rust
10 lines
203 B
Rust
![]() |
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(())
|
||
|
}
|