fmt
Some checks failed
CI / Check / Test (push) Failing after 6m32s

This commit is contained in:
2026-06-03 01:38:25 +02:00
parent 430fbb21ea
commit 6668ba511c
11 changed files with 55 additions and 44 deletions

View File

@@ -2,7 +2,7 @@ use std::sync::Arc;
use anyhow::Context;
use domain::ports::{
AuthService, ObjectStorage, LocalApContentQuery, MetadataClient, PasswordHasher,
AuthService, LocalApContentQuery, MetadataClient, ObjectStorage, PasswordHasher,
PosterFetcherClient, UserProfileFieldsRepository, WatchEventRepository, WebhookTokenRepository,
};

View File

@@ -19,10 +19,10 @@ use domain::{
collections::{PageParams, Paginated},
},
ports::{
AuthService, DiaryRepository, EventPublisher, GeneratedToken, ObjectStorage, MetadataClient,
MovieRepository, PasswordHasher, PersonCommand, PersonQuery, PosterFetcherClient,
ReviewRepository, SearchCommand, SearchPort, StatsRepository, UserRepository,
WatchlistRepository,
AuthService, DiaryRepository, EventPublisher, GeneratedToken, MetadataClient,
MovieRepository, ObjectStorage, PasswordHasher, PersonCommand, PersonQuery,
PosterFetcherClient, ReviewRepository, SearchCommand, SearchPort, StatsRepository,
UserRepository, WatchlistRepository,
},
value_objects::{
Email, ExternalMetadataId, MovieId, MovieTitle, PasswordHash, PosterUrl, ReleaseYear,

View File

@@ -18,8 +18,8 @@ use domain::{
SearchQuery, SearchResults, User,
},
ports::{
AuthService, EventPublisher, GeneratedToken, ObjectStorage, MetadataClient,
MetadataSearchCriteria, PasswordHasher, PersonCommand, PersonQuery, PosterFetcherClient,
AuthService, EventPublisher, GeneratedToken, MetadataClient, MetadataSearchCriteria,
ObjectStorage, PasswordHasher, PersonCommand, PersonQuery, PosterFetcherClient,
SearchCommand, SearchPort, UserRepository,
},
value_objects::{Email, ExternalMetadataId, PasswordHash, PosterUrl, UserId},