You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
malachite/src/operations/mod.rs

28 lines
328 B
Rust

use clap::ArgMatches;
mod build;
mod config;
2 years ago
mod init;
mod prune;
2 years ago
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();
2 years ago
}
pub fn prune() {
prune::prune();
}