making it AP complaint
Some checks failed
CI / Check / Test (push) Has been cancelled

This commit is contained in:
2026-06-30 02:25:42 +02:00
parent 943a0abe54
commit 5ae38c834a
66 changed files with 3635 additions and 2369 deletions

View File

@@ -75,6 +75,11 @@ impl MovieRepository for RepoWithExternalMovie {
{
panic!("unexpected")
}
async fn list_movies_with_external_id(
&self,
) -> Result<Vec<domain::models::Movie>, DomainError> {
Ok(vec![])
}
}
#[async_trait::async_trait]
@@ -121,6 +126,11 @@ impl MovieRepository for RepoEmpty {
{
panic!("unexpected")
}
async fn list_movies_with_external_id(
&self,
) -> Result<Vec<domain::models::Movie>, DomainError> {
Ok(vec![])
}
}
#[async_trait::async_trait]
@@ -167,6 +177,11 @@ impl MovieRepository for RepoWithTitleMatch {
{
panic!("unexpected")
}
async fn list_movies_with_external_id(
&self,
) -> Result<Vec<domain::models::Movie>, DomainError> {
Ok(vec![])
}
}
struct MetaReturnsMovie(Movie);