Roey Darwish Dror bb7567e72b Uber refactoring
2019-05-29 13:59:49 +03:00

8 lines
115 B
Rust

use std::path::Path;
pub trait BlockDevice: std::fmt::Debug {
fn path(&self) -> &Path;
}
pub trait Origin {}