summary refs log tree commit diff
path: root/api/src/routes/sticker-packs/#id/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'api/src/routes/sticker-packs/#id/index.ts')
-rw-r--r--api/src/routes/sticker-packs/#id/index.ts5
1 files changed, 3 insertions, 2 deletions
diff --git a/api/src/routes/sticker-packs/#id/index.ts b/api/src/routes/sticker-packs/#id/index.ts
index 2344a48f..7f723e97 100644
--- a/api/src/routes/sticker-packs/#id/index.ts
+++ b/api/src/routes/sticker-packs/#id/index.ts
@@ -1,8 +1,9 @@
 import { Request, Response, Router } from "express";
+import { route } from "@fosscord/api";
 
 const router: Router = Router();
 
-router.get("/", async (req: Request, res: Response) => {
+router.get("/", route({}), async (req: Request, res: Response) => {
 	//TODO
 	res.json({
 		id: "",
@@ -15,4 +16,4 @@ router.get("/", async (req: Request, res: Response) => {
 	}).status(200);
 });
 
-export default router;
\ No newline at end of file
+export default router;