website refactor
This commit is contained in:
@@ -4,11 +4,11 @@
|
||||
* In-memory implementation of IPageViewRepository for development/testing.
|
||||
*/
|
||||
|
||||
import type { IPageViewRepository } from '@core/analytics/application/repositories/IPageViewRepository';
|
||||
import type { PageViewRepository } from '@core/analytics/application/repositories/PageViewRepository';
|
||||
import { PageView, type EntityType } from '@core/analytics/domain/entities/PageView';
|
||||
import { Logger } from '@core/shared/application';
|
||||
import { Logger } from '@core/shared/domain';
|
||||
|
||||
export class InMemoryPageViewRepository implements IPageViewRepository {
|
||||
export class InMemoryPageViewRepository implements PageViewRepository {
|
||||
private pageViews: Map<string, PageView> = new Map();
|
||||
private logger: Logger;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user