1.0.0 • Published 2 years ago

@streamkits/nestjs_module_factorydrive-s3 v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

S3 driver for Factory drive module

S3 driver for Factory drive module from NestJS framework

Usage

@Module({
  //...
})
export class AppModule {
  public constructor(storage: FactorydriveService) {
    // If you want to add a new driver you can use the registerDriver method
    storage.registerDriver('s3', AwsS3Storage)
  }
}