add store endpoints
This commit is contained in:
parent
12fbba82ba
commit
9b10ab2d0b
11
api/src/routes/store/applications.ts
Normal file
11
api/src/routes/store/applications.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Request, Response, Router } from "express";
|
||||
|
||||
const router: Router = Router();
|
||||
|
||||
router.get("/applications/:id", async (req: Request, res: Response) => {
|
||||
//TODO
|
||||
const { id } = req.params;
|
||||
res.json([]).status(200);
|
||||
});
|
||||
|
||||
export default router;
|
11
api/src/routes/store/skus.ts
Normal file
11
api/src/routes/store/skus.ts
Normal file
@ -0,0 +1,11 @@
|
||||
import { Request, Response, Router } from "express";
|
||||
|
||||
const router: Router = Router();
|
||||
|
||||
router.get("/skus/:id", async (req: Request, res: Response) => {
|
||||
//TODO
|
||||
const { id } = req.params;
|
||||
res.json([]).status(200);
|
||||
});
|
||||
|
||||
export default router;
|
Loading…
x
Reference in New Issue
Block a user