Move storage/file_id.rs -> storage/file/id.rs

This commit is contained in:
Matthias Beyer 2015-12-06 13:02:21 +01:00
parent 95f6f2e97e
commit 3b89148cd0
3 changed files with 4 additions and 3 deletions

View File

@ -4,8 +4,10 @@ use std::fmt;
use regex::Regex; use regex::Regex;
pub mod id;
use module::Module; use module::Module;
use storage::file_id::*; use storage::file::id::*;
use super::parser::{FileHeaderParser, Parser, ParserError}; use super::parser::{FileHeaderParser, Parser, ParserError};
#[derive(Debug)] #[derive(Debug)]

View File

@ -8,7 +8,6 @@ use std::path::Path;
use std::vec::{Vec, IntoIter}; use std::vec::{Vec, IntoIter};
pub mod file; pub mod file;
pub mod file_id;
pub mod parser; pub mod parser;
pub mod backend; pub mod backend;
pub mod json; pub mod json;
@ -19,7 +18,7 @@ use glob::Paths;
use module::Module; use module::Module;
use runtime::Runtime; use runtime::Runtime;
use storage::file::File; use storage::file::File;
use storage::file_id::*; use storage::file::id::*;
use storage::parser::{FileHeaderParser, Parser}; use storage::parser::{FileHeaderParser, Parser};
pub type BackendOperationResult<T = ()> = Result<T, StorageError>; pub type BackendOperationResult<T = ()> = Result<T, StorageError>;