import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { const user = await client.apps.users.create('app_id', { name: 'x' }); console.log(user.id);}main();
import Honcho from 'honcho-ai';const client = new Honcho({ apiKey: process.env['HONCHO_API_KEY'], // This is the default and can be omitted});async function main() { const user = await client.apps.users.create('app_id', { name: 'x' }); console.log(user.id);}main();