mirror of
https://github.com/ItzCrazyKns/Perplexica.git
synced 2026-04-10 13:54:28 +00:00
19 lines
692 B
TypeScript
19 lines
692 B
TypeScript
import academicSearchAction from './search/academicSearch';
|
|
import doneAction from './done';
|
|
import planAction from './plan';
|
|
import ActionRegistry from './registry';
|
|
import scrapeURLAction from './scrapeURL';
|
|
import socialSearchAction from './search/socialSearch';
|
|
import uploadsSearchAction from './uploadsSearch';
|
|
import webSearchAction from './search/webSearch';
|
|
|
|
ActionRegistry.register(webSearchAction);
|
|
ActionRegistry.register(doneAction);
|
|
ActionRegistry.register(planAction);
|
|
ActionRegistry.register(scrapeURLAction);
|
|
ActionRegistry.register(uploadsSearchAction);
|
|
ActionRegistry.register(academicSearchAction);
|
|
ActionRegistry.register(socialSearchAction);
|
|
|
|
export { ActionRegistry };
|