From 0d5d2df81056dd3c739d02bfaaf281a4fa7044de Mon Sep 17 00:00:00 2001 From: Luke Harding Date: Wed, 24 Apr 2024 12:42:00 -0400 Subject: [PATCH] Add file summaries --- src/main.rs | 6 ++++++ src/pacman_install_check.rs | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/src/main.rs b/src/main.rs index f6e667b..0aa1830 100644 --- a/src/main.rs +++ b/src/main.rs @@ -6,7 +6,13 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +/* + main.rs + This file contains the primary logic of the application +*/ + mod pacman_install_check; +mod shell_commands; fn main() { println!("{}", copyright_notice()); diff --git a/src/pacman_install_check.rs b/src/pacman_install_check.rs index 8eceb8f..78eeebe 100644 --- a/src/pacman_install_check.rs +++ b/src/pacman_install_check.rs @@ -6,6 +6,11 @@ You should have received a copy of the GNU General Public License along with this program. If not, see . */ +/* + pacman_install_check.rs + This file contains a method to check if the pacman package manager is installed +*/ + use std::fmt; use std::fmt::Formatter; use std::path::Path;