$ npm i @or-sdk/bot-templates
import { BotTemplates } from '@or-sdk/bot-templates'
// with direct api url
const botTemplates = new BotTemplates({
token: 'my-account-token-string',
dataHubSvcUrl: 'http://example.data-hub-svc/endpoint'
});
// with service discovery(slower)
const botTemplates = new BotTemplates({
token: 'my-account-token-string',
discoveryUrl: 'http://example.discovery/endpoin'
});