import { serverPath } from "../variables.js"; export async function delObject(id) { await fetch(`${serverPath}/products/${id}`, { method: 'DELETE' }); }