import Evecloud from '@evecloud/sdk';const client = new Evecloud({ token: 'My Token',});async function main() { // Automatically fetches more pages as needed. for await (const workspaceListResponse of client.workspaces.list()) { console.log(workspaceListResponse.name); }}main();
import Evecloud from '@evecloud/sdk';const client = new Evecloud({ token: 'My Token',});async function main() { // Automatically fetches more pages as needed. for await (const workspaceListResponse of client.workspaces.list()) { console.log(workspaceListResponse.name); }}main();