Files
recipe-manager/server/models/groceryList.ts
2022-11-19 12:23:23 -06:00

20 lines
266 B
TypeScript

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) {
}
}