summaryrefslogtreecommitdiffstats
path: root/vendor/mdbook/src/cmd/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/mdbook/src/cmd/mod.rs')
-rw-r--r--vendor/mdbook/src/cmd/mod.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/mdbook/src/cmd/mod.rs b/vendor/mdbook/src/cmd/mod.rs
new file mode 100644
index 000000000..c5b6730f1
--- /dev/null
+++ b/vendor/mdbook/src/cmd/mod.rs
@@ -0,0 +1,10 @@
+//! 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;