teableio/teable

View on GitHub
apps/nestjs-backend/src/features/attachments/attachments-storage.module.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Module } from '@nestjs/common';
import { AttachmentsStorageService } from './attachments-storage.service';
import { StorageModule } from './plugins/storage.module';

@Module({
  providers: [AttachmentsStorageService],
  imports: [StorageModule],
  exports: [AttachmentsStorageService],
})
export class AttachmentsStorageModule {}