Skip to content

Commit

Permalink
feat: make ChordSequence clonable (required by clap)
Browse files Browse the repository at this point in the history
  • Loading branch information
schneiderfelipe committed Mar 30, 2024
1 parent a772ffa commit 6fed76d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/chord_sequence.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::str::FromStr;

use crate::Chord;

#[derive(Debug, PartialEq, Eq)]
#[derive(Clone, Debug, PartialEq, Eq)]
pub struct ChordSequence {
chords: Vec<Chord>,
}
Expand Down

0 comments on commit 6fed76d

Please sign in to comment.