routes.js 333 B

123456789
  1. const home = require("./controllers/home");
  2. module.exports = function(app){
  3. app.get("/", home.displayInventory);
  4. app.get("/merchant/new", home.merchantSetup);
  5. app.get("/getrecipes", home.getRecipes);
  6. app.post("/merchant/create", home.createMerchant);
  7. app.post("/ingredients/create", home.createNewIngredients);
  8. }