From 2f2966a29912860f81561210ea3120b577741e6a Mon Sep 17 00:00:00 2001 From: amandesai01 Date: Thu, 25 Jul 2024 22:00:12 +0530 Subject: [PATCH] chore: remove unused imports --- src/s3-driver.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/s3-driver.ts b/src/s3-driver.ts index e400e3d..cea76cc 100644 --- a/src/s3-driver.ts +++ b/src/s3-driver.ts @@ -1,9 +1,10 @@ -import { AwsClient } from "aws4fetch"; /** * This code is taken from https://github.com/unjs/unstorage/pull/361 * Credits: https://github.com/becem-gharbi */ -import { $fetch, FetchError } from "ofetch"; + +import { AwsClient } from "aws4fetch"; +import { $fetch } from "ofetch"; import { joinURL, withQuery } from "ufo"; import crypto from "uncrypto"; import { defineDriver } from "unstorage";