13 lines
428 B
JavaScript
13 lines
428 B
JavaScript
// routes/dataRoutes.js
|
|
import express from "express";
|
|
import { itemLookup } from "../controllers/dataController.js"; // Adjust the import path according to your project structure
|
|
|
|
const router = express.Router();
|
|
|
|
// Use the itemLookup function from dataController for the GET request to '/item-lookup'
|
|
router.get("/item-lookup", itemLookup);
|
|
|
|
// You can add more data-related routes here in the future
|
|
|
|
export default router;
|