Merge pull request #857 from matthiasbeyer/libimagrt/config-types-pub

Libimagrt/config types pub
This commit is contained in:
Matthias Beyer 2017-01-22 16:11:07 +01:00 committed by GitHub
commit 6dbecbd397
2 changed files with 2 additions and 3 deletions

View file

@ -34,7 +34,7 @@ generate_error_module!(
);
);
use self::error::{ConfigError, ConfigErrorKind};
pub use self::error::{ConfigError, ConfigErrorKind};
/**
* Result type of this module. Either `T` or `ConfigError`

View file

@ -48,9 +48,8 @@ extern crate libimagstorestdhook;
extern crate libimagutil;
#[macro_use] extern crate libimagerror;
mod configuration;
pub mod error;
pub mod configuration;
pub mod logger;
pub mod runtime;
pub mod setup;