docs/main.rs
2023-06-07 01:07:35 +00:00

16 lines
No EOL
284 B
Rust

// dummy file
use mdbook::MDBook;
fn main() {
let root_dir = "./";
let mut md = MDBook::load(root_dir)
.expect("Unable to load the book");
md.build().expect("Building failed");
// println!("This package does nothing! It's just for gathering deps to build the book!")
}