const db = require('../db/Pool'); const pgp = require('pg-promise')({ capSQL: true }); module.exports = class CartProductModel { async create(data) { } async find(cartid) { } async update(data) { } async delete(productid) { } }