Move header helpers from module/header/ to module/helpers/
This commit is contained in:
parent
c6a2d39981
commit
ab3ada0914
5 changed files with 3 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
use module::header as headerhelpers;
|
||||
use module::helpers::header as headerhelpers;
|
||||
use storage::file::FileHeaderData as FHD;
|
||||
use storage::file::FileHeaderSpec as FHS;
|
||||
|
||||
|
|
1
src/module/helpers/mod.rs
Normal file
1
src/module/helpers/mod.rs
Normal file
|
@ -0,0 +1 @@
|
|||
pub mod header;
|
|
@ -10,7 +10,7 @@ use runtime::Runtime;
|
|||
use storage::backend::StorageBackend;
|
||||
|
||||
pub mod bm;
|
||||
pub mod header;
|
||||
pub mod helpers;
|
||||
|
||||
#[derive(Debug)]
|
||||
pub struct ModuleError {
|
||||
|
|
Loading…
Reference in a new issue