Add check::has_tag{,s}()

This commit is contained in:
Matthias Beyer 2016-02-12 19:28:20 +01:00
parent 028f8676a0
commit 31b966b9b4
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
use libimagstore::store::Entry;
use result::Result;
use tag::Tag;
pub fn has_tag(e: &Entry, t: &Tag) -> Result<bool> {
unimplemented!()
}
pub fn has_tags(e: &Entry, ts: &Vec<Tag>) -> Result<bool> {
unimplemented!()
}