Add missing 'use ...'
This commit is contained in:
parent
8c2af3e931
commit
63bbede00f
4 changed files with 5 additions and 0 deletions
|
@ -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);
|
||||||
|
|
|
@ -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)]
|
||||||
|
|
|
@ -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::*;
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue