ingredient route

This commit is contained in:
Mikayla Dobson
2022-11-19 13:31:23 -06:00
parent 21db95b624
commit 2583163fbb
6 changed files with 118 additions and 11 deletions

View File

@@ -1,4 +1,5 @@
import { Express, Router } from "express";
import { GroceryListCtl } from "../controllers";
const router = Router();
@@ -18,6 +19,6 @@ export const groceryListRoute = (app: Express) => {
})
router.put('/:id', async (req, res, next) => {
})
}