Skip to content

Commit

Permalink
refactor: Add default implementation to ConfigProfiles
Browse files Browse the repository at this point in the history
Refs: #1
  • Loading branch information
maikbasel committed Dec 12, 2023
1 parent d6cf4aa commit 7d04a81
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src-tauri/src/core/profile/domain.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ impl ConfigProfiles {
}
}

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

#[cfg(test)]
mod tests {
use fake::Fake;
Expand Down

0 comments on commit 7d04a81

Please sign in to comment.