1//! # kbus-mock Library 2//! 3//! Mock implementation of the kbus crate for testing. 4 5mod error; 6mod kbus; 7 8pub use error::Error; 9pub use kbus::{KBus, get_output_bit, reset_state, set_input_bit};