feat(registry): register plan action

This commit is contained in:
ItzCrazyKns
2025-12-06 15:38:20 +05:30
parent 97838fd693
commit 2d82cd65d9

View File

@@ -1,8 +1,10 @@
import doneAction from './done'; import doneAction from './done';
import planAction from './plan';
import ActionRegistry from './registry'; import ActionRegistry from './registry';
import webSearchAction from './webSearch'; import webSearchAction from './webSearch';
ActionRegistry.register(webSearchAction); ActionRegistry.register(webSearchAction);
ActionRegistry.register(doneAction); ActionRegistry.register(doneAction);
ActionRegistry.register(planAction);
export { ActionRegistry }; export { ActionRegistry };