This repository has been archived on 2025-08-11. You can view files and clone it, but cannot push or open issues or pull requests.
|
import {toggleAllRedirects} from '../utilities/toggle-all-redirects.js';
|
|
|
|
export async function onCommandsHandler(command: string): Promise<void> {
|
|
if (command === 'toggleAllRedirects') {
|
|
await toggleAllRedirects();
|
|
}
|
|
}
|