Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 423 Bytes

README.md

File metadata and controls

27 lines (18 loc) · 423 Bytes

parser

Parse chat message events into botless commands


Known Event Message Types --> [Parser]  --> Botless Commands
 

A command looks like this in Message form:

/example arguments to the command

And this will be converted to a botless.bot.command event payload:

{
    "cmd": "example",
    "args": "arguments to the command",
    "author": "README.md",
    "channel": "github.com"
}