forked from AbleOS/ableos
8 lines
121 B
Rust
8 lines
121 B
Rust
//! Platform Agnostic Device
|
|
|
|
mod block;
|
|
mod character;
|
|
|
|
pub use block::BlockDevice;
|
|
pub use character::CharacterDevice;
|