summary refs log tree commit diff
diff options
context:
space:
mode:
authorHayden Young <hi@hbjy.dev>2021-10-14 23:04:11 +0100
committerHayden Young <hi@hbjy.dev>2021-10-14 23:04:11 +0100
commita003b08b88689cd28410fbd4e587adda87c2b355 (patch)
tree7e1f5d79ad33b39dad9f9d69691b4588f94dcc12
parentfeat: implement an S3-based storage API (diff)
downloadserver-a003b08b88689cd28410fbd4e587adda87c2b355.tar.xz
chore: remove unused import
-rw-r--r--cdn/src/util/S3Storage.ts2
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> =>