feat(dependencies): add async-stream and bytes to Cargo.toml and Cargo.lock
Some checks failed
CI / Check / Test (push) Has been cancelled

refactor(adapters): update diary.rs to use BoxStream from futures
This commit is contained in:
2026-06-12 01:20:45 +02:00
parent d9234ecd11
commit aec5f6b058
7 changed files with 56 additions and 10 deletions

View File

@@ -1,5 +1,4 @@
use async_trait::async_trait;
use futures::stream::BoxStream;
use domain::{
errors::DomainError,
models::{
@@ -9,6 +8,7 @@ use domain::{
ports::DiaryRepository,
value_objects::{MovieId, UserId},
};
use futures::stream::BoxStream;
use sqlx::SqlitePool;
use crate::models::{DiaryRow, FeedRow, MovieRow, MovieStatsRow, ReviewRow};