Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 238 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 238 Bytes

Automatically loads plugins from ./plugins.

Most basic plugin example:

export const plugin = {
    command: '!news',
    exec: function(bot_obj, args) {
        bot_obj.sendChatMessage("News of the day!", args.channel)
    }
}