mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2025-11-22 21:18:15 +00:00
9 lines
225 B
TypeScript
9 lines
225 B
TypeScript
import doneAction from './done';
|
|
import ActionRegistry from './registry';
|
|
import webSearchAction from './webSearch';
|
|
|
|
ActionRegistry.register(webSearchAction);
|
|
ActionRegistry.register(doneAction);
|
|
|
|
export { ActionRegistry };
|