Skip to content

Commit

Permalink
Impl PakBuilder::default
Browse files Browse the repository at this point in the history
  • Loading branch information
trumank committed Apr 19, 2024
1 parent c9abc25 commit bb2f092
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions repak/src/pak.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ pub struct PakBuilder {
allowed_compression: Vec<Compression>,
}

impl Default for PakBuilder {
fn default() -> Self {
Self::new()
}
}

impl PakBuilder {
pub fn new() -> Self {
Self {
Expand Down

0 comments on commit bb2f092

Please sign in to comment.