UNPKG

251 BJavaScriptView Raw
1'use strict'
2
3const theClient = require('the-client')
4
5async function tryExample () {
6 const client = theClient.for('app')
7
8 const fruitShop = await client.use('fruitShop')
9
10 await fruitShop.buy()
11}
12
13tryExample().catch((err) => console.error(err))