Add missing "use"
This commit is contained in:
parent
da408f60fd
commit
ff4a96ff59
1 changed files with 3 additions and 2 deletions
|
@ -29,11 +29,12 @@ mod fs {
|
|||
use error::StoreErrorKind as SEK;
|
||||
use std::io::Cursor;
|
||||
use std::path::PathBuf;
|
||||
use std::collections::HashMap;
|
||||
use std::sync::Mutex;
|
||||
|
||||
use libimagerror::into::IntoError;
|
||||
|
||||
use std::collections::HashMap;
|
||||
use std::sync::Mutex;
|
||||
use error::MapErrInto;
|
||||
|
||||
lazy_static! {
|
||||
static ref MAP: Mutex<HashMap<PathBuf, Cursor<Vec<u8>>>> = {
|
||||
|
|
Loading…
Reference in a new issue