6 lines
176 B
JavaScript
6 lines
176 B
JavaScript
const handlePartsDispatchChange = (req, res) => {
|
|
return res.status(200).json({ message: "Parts Dispatch change handled." });
|
|
};
|
|
|
|
module.exports = handlePartsDispatchChange;
|