mdbook/src/cmd/mod.rs
Matt Ickstadt fd9d27e082 rustfmt
2018-07-25 12:20:48 -05:00

10 lines
189 B
Rust

//! Subcommand modules for the `mdbook` binary.
pub mod build;
pub mod clean;
pub mod init;
#[cfg(feature = "serve")]
pub mod serve;
pub mod test;
#[cfg(feature = "watch")]
pub mod watch;