diff options
author | Hayden Young <hi@hbjy.dev> | 2021-10-14 23:04:11 +0100 |
---|---|---|
committer | Hayden Young <hi@hbjy.dev> | 2021-10-14 23:04:11 +0100 |
commit | a003b08b88689cd28410fbd4e587adda87c2b355 (patch) | |
tree | 7e1f5d79ad33b39dad9f9d69691b4588f94dcc12 /cdn | |
parent | feat: implement an S3-based storage API (diff) | |
download | server-a003b08b88689cd28410fbd4e587adda87c2b355.tar.xz |
chore: remove unused import
Diffstat (limited to 'cdn')
-rw-r--r-- | cdn/src/util/S3Storage.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cdn/src/util/S3Storage.ts b/cdn/src/util/S3Storage.ts index 33a6ba39..8c7f7813 100644 --- a/cdn/src/util/S3Storage.ts +++ b/cdn/src/util/S3Storage.ts @@ -1,5 +1,5 @@ import { S3 } from "@aws-sdk/client-s3"; -import { Readable, Stream } from "stream"; +import { Readable } from "stream"; import { Storage } from "./Storage"; const readableToBuffer = (readable: Readable): Promise<Buffer> => |