import {getAllTasks, getAllProjects} from './request.js'; const log = console::console.log; const err = console::console.error; async function test() { try { const tasks = await getAllTasks(); log(tasks.d.results); const projs = await getAllProjects(); log(projs.d.results); } catch(e) { err(e.stack); } } test();