Skip to content

Commit 867ca4f

Browse files
author
kamil.mysliwiec
committed
Hotfix
1 parent e737c54 commit 867ca4f

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

example/app.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ export class Application implements NestApplication {
55
constructor(private expressApp) {}
66

77
start() {
8-
// this.expressApp.listen(3030, () => {
9-
// console.log('Application listen on port:', 3030);
10-
// });
8+
this.expressApp.listen(3030, () => {
9+
console.log('Application listen on port:', 3030);
10+
});
1111
}
1212

1313
}

example/modules/users/users.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { NotificationService } from './notification.service';
99

1010
@Module({
1111
controllers: [ UsersController ],
12-
components: [ UsersService, ChatGateway, ChatService, NotificationService ],
12+
components: [ UsersService ],
1313
exports: [ UsersService ],
1414
})
1515
export class UsersModule {

0 commit comments

Comments
 (0)