midi: modularize

This commit is contained in:
🪞👃🪞 2025-04-26 01:29:57 +03:00
parent 39dc6b803e
commit 13444dc59a
29 changed files with 872 additions and 750 deletions

3
crates/midi/src/note.rs Normal file
View file

@ -0,0 +1,3 @@
mod note_pitch; pub use self::note_pitch::*;
mod note_point; pub use self::note_point::*;
mod note_range; pub use self::note_range::*;