Add fn to extract id from path string
This commit is contained in:
parent
42ac04c1a8
commit
e59fbd52c3
1 changed files with 4 additions and 0 deletions
|
@ -45,6 +45,10 @@ impl<'a> StorageBackend<'a> {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn file_id_from_path(p: &Path) -> String {
|
||||||
|
String::from("")
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct StorageBackendError {
|
pub struct StorageBackendError {
|
||||||
pub action: String, // The file system action in words
|
pub action: String, // The file system action in words
|
||||||
|
|
Loading…
Reference in a new issue