Add missing method retrieve_copy

This commit is contained in:
Marcel Müller 2016-01-16 18:25:22 +01:00
parent 9d7f20b68e
commit 5289547873
No known key found for this signature in database
GPG Key ID: DD4ED37D0CAC76E2
1 changed files with 4 additions and 0 deletions

View File

@ -48,6 +48,10 @@ impl Store for FSStore {
unimplemented!()
}
fn retrieve_copy(&self, id : String) -> Result<Entry> {
unimplemented!()
}
fn update(&self, entry: Arc<RwLock<Entry>>) -> Result<()> {
unimplemented!()
}