Skip to content

Commit 8335b0f

Browse files
committed
TEST: Test memory usage by removing some modules.
1 parent d486752 commit 8335b0f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app.module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
import { Module } from '@nestjs/common';
22

33
// import { AdminModule } from './admin/admin.module';
4-
// import { DBModule } from './db/db.module';
4+
import { DBModule } from './db/db.module';
55
// import { ESModule } from './es/es.module';
66
// import { ViewModule } from './view/view.module';
77

88
@Module({
9-
imports: [],
9+
imports: [DBModule],
1010
})
1111
export class AppModule {}

0 commit comments

Comments
 (0)