use clap::ArgMatches; mod build; mod config; mod init; mod prune; mod pull; pub fn init() { init::init(); } pub fn build(matches: &ArgMatches) { build::build(matches); } pub fn pull(matches: &ArgMatches) { pull::pull(matches); } pub fn config() { config::config(); } pub fn prune() { prune::prune(); }