Removed unused data structures

This commit is contained in:
Nathan Fisher 2023-03-21 14:33:38 -04:00
parent d210c44905
commit 634c19be51
1 changed files with 0 additions and 12 deletions

View File

@ -16,18 +16,6 @@ pub struct Plist {
pub entries: Vec<Entry>,
}
#[derive(Deserialize, Serialize)]
pub struct Directory {
pub path: PathBuf,
pub mode: u32,
}
#[derive(Deserialize, Serialize)]
pub struct Link {
pub path: PathBuf,
pub target: PathBuf,
}
#[derive(Deserialize, Serialize, PartialEq)]
pub enum Entry {
File {