alvarocastro/discord-bot

View on GitHub
src/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import Bot from './bot';
import { ChatCommand, AdminChatCommand, ChannelChatCommand } from './chat-command';
import ChatEvent from './chat-event';
import Memory from './memory';
import commands from './commands';

export default {
    Bot,
    ChatEvent,
    ChatCommand,
    AdminChatCommand,
    ChannelChatCommand,
    Memory,
    commands
};

export { Bot };
export { ChatEvent };
export { ChatCommand };
export { AdminChatCommand };
export { ChannelChatCommand };
export { Memory };
export { commands };