move todo_per_backend into separate module

This commit is contained in:
Dr. Matthias Ratajczak
2023-01-10 15:21:02 +01:00
parent 3bfe2092bf
commit 5e874d79d4
4 changed files with 102 additions and 83 deletions
+3
View File
@@ -1,6 +1,7 @@
mod macros;
mod pacman;
mod rust;
mod todo_per_backend;
use std::collections::HashSet;
use std::os::unix::process::CommandExt;
@@ -8,6 +9,8 @@ use std::process::Command;
use crate::{Group, Package};
pub(crate) use todo_per_backend::ToDoPerBackend;
pub use pacman::Pacman;
pub use rust::Rust;
pub(in crate::backend) type Switches = &'static [&'static str];