import MidboundCloud from '@midbound/cloud';
const client = new MidboundCloud({
apiKey: process.env['MIDBOUND_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.health.check();
console.log(response.status);
import MidboundCloud from '@midbound/cloud';
const client = new MidboundCloud({
apiKey: process.env['MIDBOUND_CLOUD_API_KEY'], // This is the default and can be omitted
});
const response = await client.health.check();
console.log(response.status);