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