Export FourWireError and ThreeWireError

This commit is contained in:
Michael Watzko 2021-03-23 23:32:43 +01:00
commit 5e0568d817

View file

@ -4,7 +4,9 @@ mod four_wire;
mod three_wire;
pub use self::four_wire::FourWire;
pub use self::four_wire::FourWireError;
pub use self::three_wire::ThreeWire;
pub use self::three_wire::ThreeWireError;
pub trait Bus {
type Error: Debug;