export default async function fetchFromServer()

in client/src/app/service/fetch.js [3:6]


export default async function fetchFromServer(path, method) {
    const httpMethod = method === undefined ? 'GET' : method;
    return await fetch(path, {method: httpMethod, headers: {"Authorization": "Bearer " + spaceAuth.getUserToken()}});
}