summary refs log tree commit diff
path: root/api/src/routes/store/skus.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/store/skus.ts')
-rw-r--r--api/src/routes/store/skus.ts12
1 files changed, 0 insertions, 12 deletions
diff --git a/api/src/routes/store/skus.ts b/api/src/routes/store/skus.ts
deleted file mode 100644
index 7d0e12eb..00000000
--- a/api/src/routes/store/skus.ts
+++ /dev/null
@@ -1,12 +0,0 @@
-import { Request, Response, Router } from "express";
-import { route } from "@fosscord/api";
-
-const router: Router = Router();
-
-router.get("/skus/:id", route({}), async (req: Request, res: Response) => {
-	//TODO
-	const { id } = req.params;
-	res.json([]).status(200);
-});
-
-export default router;