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