1 files changed, 0 insertions, 13 deletions
diff --git a/api/src/routes/sticker-packs/index.ts b/api/src/routes/sticker-packs/index.ts
deleted file mode 100644
index e6560d12..00000000
--- a/api/src/routes/sticker-packs/index.ts
+++ /dev/null
@@ -1,13 +0,0 @@
-import { Request, Response, Router } from "express";
-import { route } from "@fosscord/api";
-import { StickerPack } from "@fosscord/util";
-
-const router: Router = Router();
-
-router.get("/", route({}), async (req: Request, res: Response) => {
- const sticker_packs = await StickerPack.find({ relations: ["stickers"] });
-
- res.json({ sticker_packs });
-});
-
-export default router;
|