diff --git a/libimagstore/src/storeid.rs b/libimagstore/src/storeid.rs index 25e550ec..60d59940 100644 --- a/libimagstore/src/storeid.rs +++ b/libimagstore/src/storeid.rs @@ -14,7 +14,10 @@ use store::Store; /// The Index into the Store #[derive(Debug, Clone, PartialEq, Hash, Eq, PartialOrd, Ord)] -pub struct StoreId(PathBuf); +pub struct StoreId { + store_location: PathBuf, + id: PathBuf, +} impl StoreId {