mdBook/src/cmd/mod.rs

11 lines
189 B
Rust
Raw Normal View History

2018-07-26 01:20:48 +08:00
//! 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;