1use song::Song; 2 3pub mod event_command; 4pub mod note_event; 5pub mod pattern; 6pub mod song; 7 8#[derive(Clone)] 9pub struct Project { 10 pub song: Song, 11 pub name: String, 12 pub description: String, 13}