Skip to content

Instantly share code, notes, and snippets.

@bacongravy
Created April 19, 2020 05:24
Show Gist options
  • Save bacongravy/7eb70fc63723820a0b5858d7bcf926a7 to your computer and use it in GitHub Desktop.
Save bacongravy/7eb70fc63723820a0b5858d7bcf926a7 to your computer and use it in GitHub Desktop.
module.exports = app => {
app.command("/stash", async ({ ack, respond, command }) => {
await ack();
if (command.text) {
await respond(`I heard '${command.text}'`)
} else {
await respond("What?");
}
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment