Skip to content
Snippets Groups Projects
telegram.module.ts 174 B
Newer Older
  • Learn to ignore specific revisions
  • Pascal Kosak's avatar
    Pascal Kosak committed
    import { Module } from '@nestjs/common';
    import { TelegramService } from './telegram.service';
    
    Pascal Kosak's avatar
    Pascal Kosak committed
    
    @Module({
        providers: [TelegramService],
    })
    export class TelegramModule {}