website refactor

This commit is contained in:
2026-01-16 21:57:44 +01:00
parent 83a9092c50
commit 27f5a52e04
30 changed files with 166 additions and 161 deletions

View File

@@ -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();