const Rest = { Request: class { constructor(base) { this.base = base; } get(url) { return fetch(url); } post(url, body) { return fetch( url, { method: 'POST', body: JSON.stringify(body), } ); } }, };