summary refs log tree commit diff
path: root/cdn/src/routes/attachments.ts
diff options
context:
space:
mode:
authorFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-09 11:21:06 +0200
committerFlam3rboy <34555296+Flam3rboy@users.noreply.github.com>2021-10-09 11:21:06 +0200
commit4cd6207e5f54921b51d05af932f05afa6aec7226 (patch)
treefd2dcd70f2b3318a7cb7cbaac48467d340887765 /cdn/src/routes/attachments.ts
parent:bug: fix import (diff)
downloadserver-4cd6207e5f54921b51d05af932f05afa6aec7226.tar.xz
:bug: fix cdn
Diffstat (limited to '')
-rw-r--r--cdn/src/routes/attachments.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/cdn/src/routes/attachments.ts b/cdn/src/routes/attachments.ts

index 354bdde9..ae50bc48 100644 --- a/cdn/src/routes/attachments.ts +++ b/cdn/src/routes/attachments.ts
@@ -1,9 +1,9 @@ import { Router, Response, Request } from "express"; import { Config, Snowflake } from "@fosscord/util"; -import { storage } from "@fosscord/cdn"; +import { storage } from "../util/Storage"; import FileType from "file-type"; import { HTTPError } from "lambert-server"; -import { multer } from "@fosscord/cdn"; +import { multer } from "../util/multer"; import imageSize from "image-size"; const router = Router();