2017-05-18 19:32:08 +02:00
|
|
|
pub mod bookconfig;
|
|
|
|
|
pub mod htmlconfig;
|
2017-06-29 00:35:20 -04:00
|
|
|
pub mod playpenconfig;
|
2017-05-18 19:32:08 +02:00
|
|
|
pub mod tomlconfig;
|
2017-05-19 00:56:37 +02:00
|
|
|
pub mod jsonconfig;
|
2017-05-18 19:32:08 +02:00
|
|
|
|
|
|
|
|
// Re-export the config structs
|
|
|
|
|
pub use self::bookconfig::BookConfig;
|
|
|
|
|
pub use self::htmlconfig::HtmlConfig;
|
2017-06-29 00:35:20 -04:00
|
|
|
pub use self::playpenconfig::PlaypenConfig;
|
2017-05-19 00:56:37 +02:00
|
|
|
pub use self::tomlconfig::TomlConfig;
|