16 lines
401 B
TypeScript
16 lines
401 B
TypeScript
import { Module } from '@nestjs/common';
|
|
import { DauCalculationService } from './services/dau-calculation.service';
|
|
import { OnlineDetectionService } from './services/online-detection.service';
|
|
|
|
@Module({
|
|
providers: [
|
|
DauCalculationService,
|
|
OnlineDetectionService,
|
|
],
|
|
exports: [
|
|
DauCalculationService,
|
|
OnlineDetectionService,
|
|
],
|
|
})
|
|
export class DomainModule {}
|