9 lines
320 B
TypeScript
9 lines
320 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { AnalyticsProviders, PAGE_VIEW_REPOSITORY_TOKEN, ENGAGEMENT_REPOSITORY_TOKEN } from './AnalyticsProviders';
|
|
|
|
@Module({
|
|
imports: [],
|
|
providers: AnalyticsProviders,
|
|
exports: [PAGE_VIEW_REPOSITORY_TOKEN, ENGAGEMENT_REPOSITORY_TOKEN],
|
|
})
|
|
export class AnalyticsModule {} |