feat(social-search): add social search

This commit is contained in:
ItzCrazyKns
2025-12-18 13:56:39 +05:30
parent ac183a90e8
commit 604774ef6e
2 changed files with 131 additions and 0 deletions

View File

@@ -3,6 +3,7 @@ import doneAction from './done';
import planAction from './plan';
import ActionRegistry from './registry';
import scrapeURLAction from './scrapeURL';
import socialSearchAction from './socialSearch';
import uploadsSearchAction from './uploadsSearch';
import webSearchAction from './webSearch';
@@ -12,5 +13,6 @@ ActionRegistry.register(planAction);
ActionRegistry.register(scrapeURLAction);
ActionRegistry.register(uploadsSearchAction);
ActionRegistry.register(academicSearchAction);
ActionRegistry.register(socialSearchAction);
export { ActionRegistry };