mirror of
https://github.com/philmmanjaro/alma.git
synced 2025-07-27 15:39:28 +02:00
8 lines
115 B
Rust
8 lines
115 B
Rust
use std::path::Path;
|
|
|
|
pub trait BlockDevice: std::fmt::Debug {
|
|
fn path(&self) -> &Path;
|
|
}
|
|
|
|
pub trait Origin {}
|