feat(domain): add Note enum with semitone math and display

This commit is contained in:
2026-04-08 01:26:17 +02:00
commit a3ae4429f5
2 changed files with 110 additions and 0 deletions

3
crates/domain/src/lib.rs Normal file
View File

@@ -0,0 +1,3 @@
pub mod note;
pub use note::Note;