Add necessary accessors

This commit is contained in:
Louis Dureuil
2025-10-02 11:12:51 +02:00
parent c29bdcae23
commit 91275adb76
3 changed files with 14 additions and 1 deletions

View File

@@ -33,6 +33,10 @@ impl FileStore {
std::fs::create_dir_all(&path)?;
Ok(FileStore { path })
}
pub fn path(&self) -> &Path {
&self.path
}
}
impl FileStore {