routes.js 205 B

123456
  1. const controller = require("./Controllers/Controller");
  2. module.exports = function(app){
  3. app.get("/ingredients", controller.getIngredients);
  4. app.post("/ingredients", controller.createIngredient);
  5. }