refactor(wyatt_architecture): upgrade usecases to add NoParams

This commit is contained in:
2024-02-18 22:49:11 +01:00
parent 41382aad2f
commit 59bca9045e
31 changed files with 220 additions and 385 deletions
@@ -88,8 +88,8 @@ class PhotoRepositoryImpl extends PhotoRepository {
}
return Ok(response);
} catch (_) {
return const Err(
ClientException('Cannot retrieve all photos from favorites.'),
return Err(
const ClientException('Cannot retrieve all photos from favorites.'),
);
}
}