package upgrade, refacror

This commit is contained in:
2024-07-24 18:58:11 +02:00
parent 0d0c544088
commit b11271cf82
12 changed files with 277 additions and 65 deletions

6
src/packages/install.rs Normal file
View File

@@ -0,0 +1,6 @@
use colored::Colorize;
pub fn install(_package: Vec<String>) -> Result<(), Box<dyn std::error::Error>> {
println!("{} {}", "::".bold().green(), "Installing packages...".bold());
todo!();
}