chore: wire WrapUpStatsQuery panic stub into binaries
Some checks failed
CI / Check / Test (push) Failing after 44s
Some checks failed
CI / Check / Test (push) Failing after 44s
This commit is contained in:
@@ -992,6 +992,21 @@ impl crate::ports::WebhookTokenRepository for PanicWebhookTokenRepository {
|
||||
}
|
||||
}
|
||||
|
||||
// ── PanicWrapUpStatsQuery ───────────────────────────────────────────────────
|
||||
|
||||
pub struct PanicWrapUpStatsQuery;
|
||||
|
||||
#[async_trait]
|
||||
impl crate::ports::WrapUpStatsQuery for PanicWrapUpStatsQuery {
|
||||
async fn get_reviews_with_profiles(
|
||||
&self,
|
||||
_scope: &crate::models::wrapup::WrapUpScope,
|
||||
_range: &crate::models::wrapup::DateRange,
|
||||
) -> Result<Vec<crate::ports::WrapUpMovieRow>, DomainError> {
|
||||
unimplemented!("WrapUpStatsQuery not wired")
|
||||
}
|
||||
}
|
||||
|
||||
// ── InMemoryWrapUpStatsQuery ────────────────────────────────────────────────
|
||||
|
||||
pub struct InMemoryWrapUpStatsQuery {
|
||||
|
||||
Reference in New Issue
Block a user