8 lines
228 B
TypeScript
8 lines
228 B
TypeScript
|
import {toggleAllRedirects} from '../utilities/toggle-all-redirects.js';
|
||
|
|
||
|
export async function onCommandsHandler(command: string): Promise<void> {
|
||
|
if (command === 'toggleAllRedirects') {
|
||
|
await toggleAllRedirects();
|
||
|
}
|
||
|
}
|