feat(domain): add TabFetcherPort and TabParserPort traits

This commit is contained in:
2026-04-08 01:35:55 +02:00
parent d004698923
commit 2f703fbb2a
2 changed files with 39 additions and 0 deletions

View File

@@ -1,7 +1,9 @@
pub mod note;
pub mod chord;
pub mod song;
pub mod ports;
pub use note::Note;
pub use chord::Chord;
pub use song::{ChordPosition, LyricLine, Section, SectionKind, SongMeta, Song};
pub use ports::{FetchError, ParseError, TabFetcherPort, TabParserPort, TabSource};