export async function getProducts()

in frontend/src/backend/api.js [63:69]


export async function getProducts() {
    return getHeaders().then(
        headers => API.get("ProductAPI", "/product", {
            headers: headers
        })
    )
}