mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 12:00:43 +00:00
* fix(deps): detect constant dynamic imports in ownership audit * feat(plugins): move bonjour discovery into bundled plugin * test(plugins): remove moved bonjour core tests * fix(plugins): harden bonjour disable and console restore * fix(plugins): split gateway discovery ids from services * fix(plugins): harden bonjour advertiser shutdown * fix(plugins): clean up bonjour split lint
41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import type { PluginRegistry } from "./registry-types.js";
|
|
|
|
export function createEmptyPluginRegistry(): PluginRegistry {
|
|
return {
|
|
plugins: [],
|
|
tools: [],
|
|
hooks: [],
|
|
typedHooks: [],
|
|
channels: [],
|
|
channelSetups: [],
|
|
providers: [],
|
|
cliBackends: [],
|
|
textTransforms: [],
|
|
speechProviders: [],
|
|
realtimeTranscriptionProviders: [],
|
|
realtimeVoiceProviders: [],
|
|
mediaUnderstandingProviders: [],
|
|
imageGenerationProviders: [],
|
|
videoGenerationProviders: [],
|
|
musicGenerationProviders: [],
|
|
webFetchProviders: [],
|
|
webSearchProviders: [],
|
|
embeddedExtensionFactories: [],
|
|
codexAppServerExtensionFactories: [],
|
|
memoryEmbeddingProviders: [],
|
|
agentHarnesses: [],
|
|
gatewayHandlers: {},
|
|
gatewayMethodScopes: {},
|
|
httpRoutes: [],
|
|
cliRegistrars: [],
|
|
reloads: [],
|
|
nodeHostCommands: [],
|
|
securityAuditCollectors: [],
|
|
services: [],
|
|
gatewayDiscoveryServices: [],
|
|
commands: [],
|
|
conversationBindingResolvedHandlers: [],
|
|
diagnostics: [],
|
|
};
|
|
}
|