1import setupCommands from "./setup/commands"; 2import setupActions from "./setup/actions"; 3 4const takes = async () => { 5 setupCommands(); 6 setupActions(); 7}; 8 9export default takes;