Skip to content

Commit

Permalink
add service to module
Browse files Browse the repository at this point in the history
  • Loading branch information
WojciechGrancow committed Nov 6, 2023
1 parent aba10b4 commit 65c7b5a
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { Module } from '@nestjs/common';
import { RocketChatUserRepo } from './repo';
import { RocketChatUserService } from './service/rocket-chat-user.service';
import { RocketChatService } from '../rocketchat/rocket-chat.service';

@Module({
providers: [RocketChatUserRepo],
exports: [],
providers: [RocketChatUserService, RocketChatUserRepo],
exports: [RocketChatService],
})
export class RocketChatUserModule {}

0 comments on commit 65c7b5a

Please sign in to comment.