wingbot-mssql
Version:
MSSQL storage for wingbot.ai
20 lines (16 loc) • 494 B
JavaScript
// const { pool } = require('../lib/mssql');
const StateStorage = require('./StateStorage');
const BotTokenStorage = require('./BotTokenStorage');
const ChatLogStorage = require('./ChatLogStorage');
const BotConfigStorage = require('./BotConfigStorage');
const AttachmentCache = require('./AttachmentCache');
const MsSql = require('./MsSql');
module.exports = {
StateStorage,
BotTokenStorage,
ChatLogStorage,
BotConfigStorage,
AttachmentCache,
MsSql
};
;