Use file_abstraction module instead of store

to import `InMemoryFileAbstraction` into runtime
This commit is contained in:
Robert Ignat 2017-06-25 17:08:18 +02:00 committed by Matthias Beyer
parent 987b331e39
commit 625938398d

View file

@ -35,7 +35,8 @@ use error::RuntimeErrorKind;
use error::MapErrInto; use error::MapErrInto;
use logger::ImagLogger; use logger::ImagLogger;
use libimagstore::store::{Store, InMemoryFileAbstraction}; use libimagstore::store::Store;
use libimagstore::file_abstraction::InMemoryFileAbstraction;
use spec::CliSpec; use spec::CliSpec;
/// The Runtime object /// The Runtime object