Impl PakBuilder::default

This commit is contained in:
Truman Kilen 2024-04-19 12:04:03 -05:00
parent c9abc25336
commit bb2f0927e1

View file

@ -14,6 +14,12 @@ pub struct PakBuilder {
allowed_compression: Vec<Compression>, allowed_compression: Vec<Compression>,
} }
impl Default for PakBuilder {
fn default() -> Self {
Self::new()
}
}
impl PakBuilder { impl PakBuilder {
pub fn new() -> Self { pub fn new() -> Self {
Self { Self {