Viewing File: /home/zikryat/public_html/src/common/file_uploader/file_uploader.module.ts

/**
 * Copyright 2023, the hatemragab project author.
 * All rights reserved. Use of this source code is governed by a
 * MIT license that can be found in the LICENSE file.
 */

import { Module } from '@nestjs/common';
import { FileUploaderService } from './file_uploader.service';

@Module({
  providers: [FileUploaderService],
  exports: [FileUploaderService],
})
export class FileUploaderModule {}
Back to Directory File Manager