mirror of
https://github.com/rust-lang/mdBook
synced 2025-01-09 11:18:43 +00:00
9 lines
227 B
Rust
9 lines
227 B
Rust
pub mod bookconfig;
|
|
pub mod htmlconfig;
|
|
pub mod tomlconfig;
|
|
pub mod jsonconfig;
|
|
|
|
// Re-export the config structs
|
|
pub use self::bookconfig::BookConfig;
|
|
pub use self::htmlconfig::HtmlConfig;
|
|
pub use self::tomlconfig::TomlConfig;
|