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