We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d70380 commit 0efac09Copy full SHA for 0efac09
README.md
@@ -28,7 +28,7 @@ $ npm i --save @slynova/flydrive-gcs
28
```typescript
29
// app.module.ts
30
import { Module } from '@nestjs/common'
31
-import { StorageModule, DriverType } from '@codebrew/nestjs-storage';
+import { StorageModule, DriverType, StorageService } from '@codebrew/nestjs-storage';
32
33
@Module({
34
imports: [
@@ -46,7 +46,7 @@ import { StorageModule, DriverType } from '@codebrew/nestjs-storage';
46
],
47
})
48
export class AppModule {
49
- constructor(private storage: StorageServic) {
+ constructor(private storage: StorageService) {
50
this.storage.getDisk().put('test.txt', 'text content');
51
}
52
0 commit comments