apply/compare in main.rs

This commit is contained in:
shibazaki 2025-10-09 17:53:51 +02:00
parent ee97021e70
commit c985293296

View File

@ -19,6 +19,8 @@ fn main() -> Result<(), Box<dyn std::error::Error>> {
match user_option.as_str() {
"load" => sources_fn()?,
"sync" => packages_sync_fn()?,
"apply" => println!("Applying current configuration..."),
"compare" => println!("Which packages are missing/exceeding compared to your configuration"),
_ => println!("Invalid option"),
}
Ok(())