a fun bot for the hc slack
at v0.0.3 259 B view raw
1import setupCommands from "./setup/commands"; 2import setupActions from "./setup/actions"; 3import setupNotifications from "./setup/notifications"; 4 5const takes = async () => { 6 setupCommands(); 7 setupActions(); 8 setupNotifications(); 9}; 10 11export default takes;