export async function cartMigrate()

in frontend/src/backend/api.js [71:78]


export async function cartMigrate() {
    return getHeaders(true).then(
        headers => API.post("CartAPI", "/cart/migrate", {
            headers: headers,
            withCredentials: true
        })
    )
}