Skip to main content

minstrel/
lib.rs

1//! A simple and intuitive music library.
2#[warn(missing_docs)]
3mod key;
4mod mode;
5mod note;
6
7pub use key::*;
8pub use mode::*;
9pub use note::*;