- crates: common→application, api→presentation, infrastructure/*→adapters/* - new crates: api-types, infra-wiring - domain: errors/, models/, value_objects/, ports/, services/ - application: CQRS use cases (songs/, tabs/) w/ commands, queries, deps - unified DomainError replaces RepositoryError - workspace deps, unused dep cleanup - fix: parse plain-text chord lines (UG drops spans mid-song) - tests extracted to separate modules (tests/ dirs)
8 lines
183 B
Rust
8 lines
183 B
Rust
use domain::ports::{TabFetcherPort, TabParserPort};
|
|
use std::sync::Arc;
|
|
|
|
pub struct ParseTabDeps {
|
|
pub fetcher: Arc<dyn TabFetcherPort>,
|
|
pub parser: Arc<dyn TabParserPort>,
|
|
}
|