refactor
This commit is contained in:
@@ -6,7 +6,7 @@
|
||||
|
||||
import type { IAnalyticsSnapshotRepository } from '../../domain/repositories/IAnalyticsSnapshotRepository';
|
||||
import { AnalyticsSnapshot, type SnapshotPeriod, type SnapshotEntityType } from '../../domain/entities/AnalyticsSnapshot';
|
||||
import { Logger } from '@gridpilot/core/shared/application';
|
||||
import { Logger } from '@core/shared/application';
|
||||
|
||||
export class InMemoryAnalyticsSnapshotRepository implements IAnalyticsSnapshotRepository {
|
||||
private snapshots: Map<string, AnalyticsSnapshot> = new Map();
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
import type { IEngagementRepository } from '../../domain/repositories/IEngagementRepository';
|
||||
import { EngagementEvent, type EngagementAction, type EngagementEntityType } from '../../domain/entities/EngagementEvent';
|
||||
import { Logger } from '@gridpilot/core/shared/application';
|
||||
import { Logger } from '@core/shared/application';
|
||||
|
||||
|
||||
export class InMemoryEngagementRepository implements IEngagementRepository {
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
import type { IPageViewRepository } from '../../domain/repositories/IPageViewRepository';
|
||||
import { PageView, type EntityType } from '../../domain/entities/PageView';
|
||||
import { Logger } from '@gridpilot/core/shared/application';
|
||||
import { Logger } from '@core/shared/application';
|
||||
|
||||
export class InMemoryPageViewRepository implements IPageViewRepository {
|
||||
private pageViews: Map<string, PageView> = new Map();
|
||||
|
||||
Reference in New Issue
Block a user