aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/package/archiver/zip_archiver.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/shirabe/src/package/archiver/zip_archiver.rs')
-rw-r--r--crates/shirabe/src/package/archiver/zip_archiver.rs6
1 files changed, 6 insertions, 0 deletions
diff --git a/crates/shirabe/src/package/archiver/zip_archiver.rs b/crates/shirabe/src/package/archiver/zip_archiver.rs
index 7d9f126..41201b5 100644
--- a/crates/shirabe/src/package/archiver/zip_archiver.rs
+++ b/crates/shirabe/src/package/archiver/zip_archiver.rs
@@ -13,6 +13,12 @@ use std::path::PathBuf;
#[derive(Debug)]
pub struct ZipArchiver;
+impl Default for ZipArchiver {
+ fn default() -> Self {
+ Self::new()
+ }
+}
+
impl ZipArchiver {
pub fn new() -> Self {
Self