mirror of
https://github.com/edera-dev/krata.git
synced 2025-08-02 12:50:54 +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(())
|
|
}
|