Skip to main content

asciimusic/
lib.rs

1/*!
2 * The main entry point to this crate is [`song::Song`](song/struct.Song.html)
3 */
4
5mod instrument;
6mod base32;
7pub mod error;
8mod envelope;
9mod voice;
10pub mod song;
11
12pub use crate::song::Song;