const ProductSchema = new mongoose.Schema({ name: String, price: Number })
const Product = mongoose.model('Product', ProductSchema)