Int_Prog/лаб3/lab3/public/scripts/api/fetchAllCategoeies.js

7 lines
253 B
JavaScript
Raw Permalink Normal View History

2024-01-18 23:29:33 +04:00
import { serverPath } from "../variables.js";
export async function fetchAllCategories() {
// По дефолту метод GET (получение данных)
const response = await fetch(`${serverPath}/categories`);
return response.json();
}