Add cache cleaning #13

Merged
luke merged 4 commits from development into main 2024-04-30 21:50:31 +00:00
3 changed files with 3 additions and 2 deletions
Showing only changes of commit 41a7eb90c5 - Show all commits

View File

@ -13,10 +13,10 @@
use colored::{ColoredString, Colorize}; use colored::{ColoredString, Colorize};
use apis::pacman; use wrappers::pacman;
mod apis;
mod shell_commands; mod shell_commands;
mod wrappers;
fn main() { fn main() {
println!("{}", copyright_notice()); println!("{}", copyright_notice());

View File

@ -1 +1,2 @@
pub mod pacman; pub mod pacman;
mod paru;