feat: implement packagequeue

This commit is contained in:
Strix 2023-10-14 22:39:50 +02:00
parent 825114136a
commit f29f944f99
No known key found for this signature in database
GPG key ID: 49B2E37B8915B774
10 changed files with 176 additions and 60 deletions

View file

@ -3,7 +3,7 @@ use std::fmt::{Display, Formatter};
use std::io;
use std::path::Path;
#[derive(Debug, Clone)]
#[derive(Debug, Clone, Eq, PartialEq)]
pub struct PKGFile {
pub manifest: String,
pub data: Vec<u8>,