1
0
Fork 0
forked from AbleOS/ableos
ableos_time/ableos/src/device_interface/mod.rs

8 lines
121 B
Rust
Raw Normal View History

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