summary refs log tree commit diff
path: root/cdn
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
commitef157c9aa7a683aa8e30e0db0a7d555918272137 (patch)
treee52a531bae0075d62418af413cfd89e3237ea9e6 /cdn
parentfeat: implement an S3-based storage API (diff)
downloadserver-ef157c9aa7a683aa8e30e0db0a7d555918272137.tar.xz
chore: remove unused import
Diffstat (limited to 'cdn')
-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> =>