Additional cleanup

This commit is contained in:
Robert Sammelson 2023-05-15 19:47:02 -04:00
parent 1b4ccd0dde
commit 877722ed1b
No known key found for this signature in database
GPG key ID: 92F1F04EDB06B9E9
4 changed files with 7 additions and 8 deletions

View file

@ -1,10 +1,10 @@
#![forbid(unsafe_code)]
mod accessors;
use accessors::Result;
pub use accessors::{Error, Obd2Device};
pub mod device;
mod interface;
pub use interface::Obd2;
mod obd2_device;
use obd2_device::Result;
pub use obd2_device::{Error, Obd2Device};