Fix import for new libimagentryurl lib

Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
This commit is contained in:
Matthias Beyer 2019-05-29 18:06:12 +02:00
parent 098d25db89
commit c33c29e8e2
3 changed files with 4 additions and 4 deletions

View File

@ -61,7 +61,7 @@ use std::path::PathBuf;
use failure::Error;
use failure::err_msg;
use libimagentrylink::external::ExternalLinker;
use libimagentryurl::linker::UrlLinker;
use libimagentrylink::internal::InternalLinker;
use libimagentrylink::internal::store_check::StoreLinkConsistentExt;
use libimagerror::trace::{MapErrTrace, trace_error};

View File

@ -20,7 +20,7 @@
//! BookmarkCollection module
//!
//! A BookmarkCollection is nothing more than a simple store entry. One can simply call functions
//! from the libimagentrylink::external::ExternalLinker trait on this to generate external links.
//! from the libimagentryurl::linker::UrlLinker trait on this to generate external links.
//!
//! The BookmarkCollection type offers helper functions to get all links or such things.
@ -34,7 +34,7 @@ use libimagstore::store::Store;
use libimagstore::store::Entry;
use libimagstore::store::FileLockEntry;
use libimagstore::storeid::StoreId;
use libimagentrylink::external::ExternalLinker;
use libimagentryurl::linker::UrlLinker;
use libimagentrylink::external::iter::UrlIter;
use libimagentrylink::internal::InternalLinker;
use libimagentrylink::internal::Link as StoreLink;

View File

@ -24,7 +24,7 @@ use failure::ResultExt;
use failure::Error;
use crate::link::extract_links;
use libimagentrylink::external::ExternalLinker;
use libimagentryurl::linker::UrlLinker;
use libimagentrylink::internal::InternalLinker;
use libimagentryref::reference::MutRef;
use libimagentryref::reference::RefFassade;