website refactor
This commit is contained in:
@@ -4,10 +4,10 @@
|
||||
* In-memory implementation of IUserRatingRepository
|
||||
*/
|
||||
|
||||
import { IUserRatingRepository, UserRating } from '@core/identity';
|
||||
import { Logger } from '@core/shared/application';
|
||||
import { UserRatingRepository, UserRating } from '@core/identity';
|
||||
import { Logger } from '@core/shared/domain';
|
||||
|
||||
export class InMemoryUserRatingRepository implements IUserRatingRepository {
|
||||
export class InMemoryUserRatingRepository implements UserRatingRepository {
|
||||
private ratings: Map<string, UserRating> = new Map();
|
||||
private readonly logger: Logger;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user