Skip to content

Instantly share code, notes, and snippets.

@mpicciolli
Created March 5, 2018 22:19
Show Gist options
  • Save mpicciolli/5891c889e851b8a40bc9de0ed69d5bf0 to your computer and use it in GitHub Desktop.
Save mpicciolli/5891c889e851b8a40bc9de0ed69d5bf0 to your computer and use it in GitHub Desktop.
import { Global, Module } from '@nestjs/common';
import { Botbuilder } from './common.bot.builder';
import { BotConnector } from './common.bot.connector';
@Global()
@Module({
components: [Botbuilder, BotConnector],
exports: [Botbuilder, BotConnector]
})
export class BotCommonModule
{}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment