mdbook/src/cmd/mod.rs

12 lines
214 B
Rust
Raw Normal View History

2018-07-25 12:20:48 -05:00
//! Subcommand modules for the `mdbook` binary.
pub mod build;
pub mod clean;
2022-07-04 23:16:31 +08:00
pub mod command_prelude;
pub mod init;
#[cfg(feature = "serve")]
pub mod serve;
pub mod test;
#[cfg(feature = "watch")]
pub mod watch;