zola/src/cmd/mod.rs

8 lines
129 B
Rust
Raw Normal View History

2016-12-19 07:58:03 +00:00
mod init;
2016-12-06 08:27:03 +00:00
mod build;
mod serve;
2016-12-06 05:51:33 +00:00
2016-12-19 07:58:03 +00:00
pub use self::init::create_new_project;
2016-12-06 08:27:03 +00:00
pub use self::build::build;
pub use self::serve::serve;