entertainarr_adapter_sqlite/
podcast_task.rs

1impl entertainarr_domain::podcast::prelude::PodcastTaskRepository for crate::Pool {
2    async fn last(
3        &self,
4        method: entertainarr_domain::task::entity::TaskMethod,
5        podcast_ids: &[u64],
6    ) -> anyhow::Result<Vec<entertainarr_domain::task::entity::Task>> {
7        self.last_tasks_by_target_ids(method, podcast_ids).await
8    }
9}