Skip to content

Instantly share code, notes, and snippets.

@mpicciolli
Last active March 5, 2018 20:55
Show Gist options
  • Save mpicciolli/2a0a5e2441287e02dfb0ddf6013dc96e to your computer and use it in GitHub Desktop.
Save mpicciolli/2a0a5e2441287e02dfb0ddf6013dc96e to your computer and use it in GitHub Desktop.
import { Module, NestModule } from "@nestjs/common";
import { BotCommonModule } from "./common/common.bot.module";
import { MessagesModule } from "./messages/messages.module";
@Module({
imports: [BotCommonModule, MessagesModule],
})
export class BotModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment