1
2
3
4
5
6
7
//! Provides the two main commands

mod build;
mod init;

pub(crate) use build::build;
pub(crate) use init::init;