Spaces:
Runtime error
Runtime error
File size: 506 Bytes
51c6e04 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import { Module } from '@nestjs/common';
import { ConfigModule } from '@nestjs/config';
import { RustfsStorageController } from './rustfs-storage.controller';
import { RustfsStorageService } from './rustfs-storage.service';
import rustfsStorageConfig from './rustfs-storage.config';
@Module({
imports: [ConfigModule.forFeature(rustfsStorageConfig)],
controllers: [RustfsStorageController],
providers: [RustfsStorageService],
exports: [RustfsStorageService],
})
export class RustfsStorageModule {}
|