import {toggleAllRedirects} from '../utilities/toggle-all-redirects.js'; export async function onCommandsHandler(command: string): Promise { if (command === 'toggleAllRedirects') { await toggleAllRedirects(); } }