Skip to content

Commit

Permalink
fix: remove unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinAndreev committed Aug 7, 2024
1 parent 34652f9 commit 3bb07f6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion src/types/s3-config.type.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Abstract, Type } from '@nestjs/common';
import { ModuleMetadata } from '@nestjs/common/interfaces';
import { PrefixAlgorithm } from './prefix-algorithm.type';
import { IPrefixAlgorithm } from '../interfaces';

export type S3Config = {
Expand Down
2 changes: 1 addition & 1 deletion src/utils/deletion.service.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { DeleteObjectOutput, DeleteObjectsCommand, ListObjectsV2Output, S3Client } from '@aws-sdk/client-s3';
import { Inject, Injectable } from '@nestjs/common';
import { PREFIX_ALGORITHM, S3_SERVICE } from '../constants';
import { S3_SERVICE } from '../constants';
import { DeleteObjectsOptions, ListObjectsV2Options } from '../types';
import { ObjectsService, PrefixService } from '../services';
import { prepareOptions } from '../helpers';
Expand Down

0 comments on commit 3bb07f6

Please sign in to comment.