Last active
March 5, 2018 20:55
-
-
Save mpicciolli/2a0a5e2441287e02dfb0ddf6013dc96e to your computer and use it in GitHub Desktop.
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, 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