This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Module } from '@nestjs/common'; | |
import { GreetingsDialog } from './greetings.dialog'; | |
@Module({ | |
components: [GreetingsDialog], | |
exports: [GreetingsDialog] | |
}) | |
export class GreetingsDialogModule {} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { Module } from '@nestjs/common'; | |
import { HelpDialog } from './help.dialog'; | |
@Module({ | |
components: [HelpDialog], | |
exports: [HelpDialog] | |
}) | |
export class HelpDialogModule | |
{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
OlderNewer