diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-09-29 16:39:17 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 16:39:17 +0200 |
commit | dbe61a225e524b68e1252ea498a8ecd49faa22f4 (patch) | |
tree | 187dffc2e6f3b457557696a4f113a732e7993836 /api/src/routes/store/skus.ts | |
parent | Merge branch 'master' of https://github.com/fosscord/fosscord-server (diff) | |
parent | store improvements (diff) | |
download | server-dbe61a225e524b68e1252ea498a8ecd49faa22f4.tar.xz |
Merge pull request #402 from Thesourtimes/master
Improve store
Diffstat (limited to 'api/src/routes/store/skus.ts')
-rw-r--r-- | api/src/routes/store/skus.ts | 12 |
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; |