fabaccess-bffh/bffhd/capnp/machinesystem.rs
2022-03-11 22:13:54 +01:00

19 lines
237 B
Rust

use api::machinesystem_capnp::machine_system::Server as MachineSystem;
#[derive(Debug, Clone)]
pub struct Machines {
}
impl Machines {
pub fn new() -> Self {
Self {
}
}
}
impl MachineSystem for Machines {
}