Add add::add_tag()

This commit is contained in:
Matthias Beyer 2016-02-12 19:24:55 +01:00
parent 5512e2c86c
commit 78ae968ee9
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
use libimagstore::store::Entry;
use result::Result;
use tag::Tag;
pub fn add_tag(e: &mut Entry, t: &Tag) -> Result<()> {
unimplemented!()
}