chatpickle
Version:
Conversation Tests for Chatbots
17 lines • 474 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BotClient = void 0;
class BotClient {
constructor(botContext, userContext) {
this.botContext = botContext;
this.userContext = userContext;
}
/**
* Implement to initialize any asynchronous components that your bot client relies on.
*/
async initialize() {
return;
}
}
exports.BotClient = BotClient;
//# sourceMappingURL=BotClient.js.map