Skip to content

Instantly share code, notes, and snippets.

@spiritbroski
Created July 13, 2020 00:47
Show Gist options
  • Save spiritbroski/65eb8178876d417e73ab1eb258f3fa0f to your computer and use it in GitHub Desktop.
Save spiritbroski/65eb8178876d417e73ab1eb258f3fa0f to your computer and use it in GitHub Desktop.
import { Module } from '@nestjs/common';
import { TelegramService } from './telegram.service';
import { TelegramController } from './telegram.controller';
import { TelegramLib } from '../../lib/telegram';
@Module({
imports: [],
providers: [TelegramService,TelegramLib],
controllers: [TelegramController],
exports: [TelegramService]
})
export class TelegramModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment