Int_Prog/лаб3/lab3/public/scripts/api/delObject.js
2024-01-19 01:24:45 +04:00

5 lines
155 B
JavaScript

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