working on XML structure - dummy payload is completed and API call === 200

This commit is contained in:
2024-03-21 16:55:56 -05:00
parent 191164f4cc
commit 6dddc5799f
5 changed files with 33 additions and 20 deletions

10
api/routes/itemLookup.js Normal file
View File

@@ -0,0 +1,10 @@
// routes/itemLookup.js
import express from "express";
import itemLookup from "../controllers/itemLookup.js";
const router = express.Router();
// Use the itemLookup controller for the POST request to '/item-lookup'
router.get("/item-lookup", itemLookup);
export default router;