Add check::has_tag{,s}()
This commit is contained in:
parent
028f8676a0
commit
31b966b9b4
1 changed files with 14 additions and 0 deletions
|
@ -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!()
|
||||
}
|
||||
|
Loading…
Reference in a new issue