ableos/ableos/src/device_interface/mod.rs

8 lines
121 B
Rust
Raw Normal View History

2022-03-02 14:38:22 +00:00
//! Platform Agnostic Device
2022-08-08 17:07:43 +00:00
mod block;
mod character;
pub use block::BlockDevice;
pub use character::CharacterDevice;