clean up backend

This commit is contained in:
timeshifter
2023-01-13 14:18:18 +01:00
parent 0c350f7d7f
commit 7792b98cb4
5 changed files with 6 additions and 6 deletions
+2
View File
@@ -0,0 +1,2 @@
pub mod pacman;
pub mod rust;
@@ -4,7 +4,7 @@ use alpm::Alpm;
use alpm::PackageReason::Explicit;
use anyhow::{Context, Result};
use super::backend_trait::*;
use crate::backend::backend_trait::*;
use crate::{impl_backend_constants, Group, Package};
pub(crate) struct Pacman {
@@ -5,7 +5,7 @@ use std::path::PathBuf;
use anyhow::{Context, Result};
use serde_json::Value;
use super::backend_trait::*;
use crate::backend::backend_trait::*;
use crate::{impl_backend_constants, Group, Package};
pub(crate) struct Rust {
+1 -2
View File
@@ -1,8 +1,7 @@
mod actual;
mod backend_trait;
mod iter;
mod macros;
mod pacman;
mod rust;
mod todo_per_backend;
pub(crate) use backend_trait::Backend;