fabaccess-bffh/bffhd/capnp/machinesystem.rs

19 lines
237 B
Rust
Raw Normal View History

use api::machinesystem_capnp::machine_system::Server as MachineSystem;
2021-12-06 21:53:42 +01:00
#[derive(Debug, Clone)]
pub struct Machines {
2021-12-06 21:53:42 +01:00
}
impl Machines {
2021-12-06 21:53:42 +01:00
pub fn new() -> Self {
Self {
}
}
}
impl MachineSystem for Machines {
2021-12-06 21:53:42 +01:00
}