Skip to content

Commit 34160cc

Browse files
Add missing 'export' keyword
I think you guys forgot this 'export' keyword ;)
1 parent e186a1f commit 34160cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/techniques/mongo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ The construction above instantiates `MongooseConfigService` inside `MongooseModu
491491

492492
```typescript
493493
@Injectable()
494-
class MongooseConfigService implements MongooseOptionsFactory {
494+
export class MongooseConfigService implements MongooseOptionsFactory {
495495
createMongooseOptions(): MongooseModuleOptions {
496496
return {
497497
uri: 'mongodb://localhost/nest',

0 commit comments

Comments
 (0)