mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-07 09:53:34 +02:00
35 lines
861 B
TypeScript
35 lines
861 B
TypeScript
import type { PluginRegistry } from "./registry.js";
|
|
|
|
export function createEmptyPluginRegistry(): PluginRegistry {
|
|
return {
|
|
plugins: [],
|
|
tools: [],
|
|
hooks: [],
|
|
typedHooks: [],
|
|
channels: [],
|
|
channelSetups: [],
|
|
providers: [],
|
|
speechProviders: [],
|
|
realtimeTranscriptionProviders: [],
|
|
realtimeVoiceProviders: [],
|
|
mediaUnderstandingProviders: [],
|
|
imageGenerationProviders: [],
|
|
videoGenerationProviders: [],
|
|
musicGenerationProviders: [],
|
|
webFetchProviders: [],
|
|
webSearchProviders: [],
|
|
memoryEmbeddingProviders: [],
|
|
gatewayHandlers: {},
|
|
gatewayMethodScopes: {},
|
|
httpRoutes: [],
|
|
cliRegistrars: [],
|
|
reloads: [],
|
|
nodeHostCommands: [],
|
|
securityAuditCollectors: [],
|
|
services: [],
|
|
commands: [],
|
|
conversationBindingResolvedHandlers: [],
|
|
diagnostics: [],
|
|
};
|
|
}
|