feat(domain): add Chord struct with parsing and display

This commit is contained in:
2026-04-08 01:31:17 +02:00
parent ac1f1bd3da
commit 422afbb3f2
3 changed files with 100 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
pub mod note;
pub mod chord;
pub use note::Note;
pub use chord::Chord;