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