a fun bot for the hc slack
at v0.0.1 212 B view raw
1import { slackApp } from "../index"; 2 3const example = async () => { 4 slackApp.action("example_action", async ({ context, payload }) => { 5 console.log("Example Action", payload); 6 }); 7}; 8 9export default example;