feat(domain): add Song, Section, LyricLine, ChordPosition types

This commit is contained in:
2026-04-08 01:34:26 +02:00
parent 98370df27a
commit d004698923
2 changed files with 90 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
pub mod note;
pub mod chord;
pub mod song;
pub use note::Note;
pub use chord::Chord;
pub use song::{ChordPosition, LyricLine, Section, SectionKind, SongMeta, Song};