mirror of
https://github.com/SyncrowIOT/backend.git
synced 2025-08-25 18:09:39 +00:00
11 lines
288 B
TypeScript
11 lines
288 B
TypeScript
import { EmailService } from '@app/common/util/email/email.service';
|
|
import { Global, Module } from '@nestjs/common';
|
|
import { TimerService } from './timer.service';
|
|
|
|
@Global()
|
|
@Module({
|
|
providers: [TimerService, EmailService],
|
|
exports: [TimerService],
|
|
})
|
|
export class TimerModule {}
|