You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
255 B
Rust

use crate::instance::build_qemu_command;
use vore_core::InstanceConfig;
mod instance;
fn main() {
let cfg = InstanceConfig::from_toml(include_str!("../../config/example.toml")).unwrap();
println!("Hello, world! {}", build_qemu_command(&cfg));
}