Add cache cleaning #13

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

View File

@ -1,2 +1,14 @@
/*
Rust Arch Linux Updater
Copyright (C) 2024 Luke Harding <luke@lukeh990.io>
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/*
wrappers/mod.rs
Just makes pacman accessible
*/
pub mod pacman; pub mod pacman;
mod paru;

View File

@ -7,8 +7,8 @@
*/ */
/* /*
pacman.rs wrappers/pacman.rs
This module provides an api to make working with Pacman much easier. This module provides a wrapper to make working with Pacman much easier.
*/ */
use std::{error, fmt, result}; use std::{error, fmt, result};