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.

17 lines
313 B
Rust

use std::collections::HashMap;
use vore_core::VirtualMachine;
use std::os::unix::net::UnixListener;
struct RPCConnection {}
struct DaemonState {
machines: HashMap<String, VirtualMachine>,
connections: Vec<RPCConnection>,
rpc_listener: UnixListener,
}
impl DaemonState {
pub fn wait() {
}
}