Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 535 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 535 Bytes

Wingbot azure tablestorage

npm i wingbot-azure-tablestorage

Usage

const { BotApp } = require('wingbot');
const { AnalyticsStorage } = require('wingbot-azure-tablestorage');

const analyticsStorage = new AnalyticsStorage(accountName, accountKey);

const bot = new BotApp(/** bot app config here */);

bot.registerAnalyticsStorage(analyticsStorage);

How to run tests

Create secretKey.json in ./config

{
    "key":"INSERT_KEY_HERE"
}
npm run test