feat(domain): add StoredSong, SongSummary, SongRepositoryPort

This commit is contained in:
2026-04-08 03:03:58 +02:00
parent 852b1a8d0e
commit 8f9886c9a9
4 changed files with 56 additions and 1 deletions

View File

@@ -7,5 +7,7 @@ pub mod transposer;
pub use note::Note;
pub use chord::Chord;
pub use song::{ChordPosition, LyricLine, Section, SectionKind, SongMeta, Song};
pub use song::{song_preview_chords, StoredSong, SongSummary};
pub use ports::{FetchError, ParseError, TabFetcherPort, TabParserPort, TabSource};
pub use ports::{RepositoryError, SongRepositoryPort};
pub use transposer::{ChordTransposer, TransposeError};