1 2 3 4 5 6 7 8 9 10 11 12 13
use crate::pkg; use anyhow::Result; pub fn run( source: String, args: Vec<String>, upstream: bool, cache: bool, local: bool, verbose: bool, ) -> Result<i32> { pkg::exec::run(&source, args, upstream, cache, local, verbose) }