setup for ingredient and grocery routes

This commit is contained in:
Mikayla Dobson
2022-11-19 12:23:23 -06:00
parent 501f1dece8
commit 21db95b624
6 changed files with 127 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
import { IGroceryList } from "../schemas";
import pool from "../db";
export class GroceryList {
async getAll() {
}
async getOne(id: string) {
}
async post(data: IGroceryList) {
}
async put(id: string, data: IGroceryList) {
}
}