feat(domain): DiaryRepository::stream_user_history, DiaryExporter::stream_entries

This commit is contained in:
2026-06-12 01:05:32 +02:00
parent bf272bf8d9
commit ded7517a8a
3 changed files with 24 additions and 9 deletions

View File

@@ -154,6 +154,13 @@ impl DiaryRepository for FakeDiaryRepository {
Ok(vec![])
}
fn stream_user_history(
&self,
_user_id: UserId,
) -> futures::stream::BoxStream<'static, Result<DiaryEntry, DomainError>> {
Box::pin(futures::stream::empty())
}
async fn get_movie_stats(&self, _movie_id: &MovieId) -> Result<MovieStats, DomainError> {
Ok(MovieStats {
total_count: 0,