Add missing 'use ...'

This commit is contained in:
Matthias Beyer 2015-12-20 16:32:18 +01:00
parent 8c2af3e931
commit 63bbede00f
4 changed files with 5 additions and 0 deletions

View file

@ -24,6 +24,8 @@ mod module;
mod storage; mod storage;
mod ui; mod ui;
use module::bm::BM;
fn main() { fn main() {
let yaml = load_yaml!("../etc/cli.yml"); let yaml = load_yaml!("../etc/cli.yml");
let app = App::from_yaml(yaml); let app = App::from_yaml(yaml);

View file

@ -7,6 +7,7 @@ use std::result::Result;
use regex::Regex; use regex::Regex;
use storage::file::id_type::FileIDType;
use storage::file::hash::FileHash; use storage::file::hash::FileHash;
#[derive(Clone)] #[derive(Clone)]

View file

@ -11,6 +11,7 @@ pub mod hash;
use module::Module; use module::Module;
use storage::file::id::*; use storage::file::id::*;
use storage::file::id_type::FileIDType;
use super::parser::{FileHeaderParser, Parser, ParserError}; use super::parser::{FileHeaderParser, Parser, ParserError};
use self::header::spec::*; use self::header::spec::*;

View file

@ -7,6 +7,7 @@ use glob::PatternError;
use storage::file::id::FileID; use storage::file::id::FileID;
use storage::file::id_type::FileIDType; use storage::file::id_type::FileIDType;
use storage::file::hash::FileHash; use storage::file::hash::FileHash;
use module::Module;
/* /*
* A path represents either a GLOB ("/tmp/store/module-*-*.imag" for example) or a full path * A path represents either a GLOB ("/tmp/store/module-*-*.imag" for example) or a full path