mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-06 14:51:08 +00:00
12 lines
653 B
TypeScript
12 lines
653 B
TypeScript
import { loadPluginManifestRegistry as loadPluginManifestRegistryImpl } from "../plugins/manifest-registry.js";
|
|
import {
|
|
collectChannelSchemaMetadata as collectChannelSchemaMetadataImpl,
|
|
collectPluginSchemaMetadata as collectPluginSchemaMetadataImpl,
|
|
} from "./channel-config-metadata.js";
|
|
import { buildConfigSchema as buildConfigSchemaImpl } from "./schema.js";
|
|
|
|
export const loadPluginManifestRegistry = loadPluginManifestRegistryImpl;
|
|
export const collectChannelSchemaMetadata = collectChannelSchemaMetadataImpl;
|
|
export const collectPluginSchemaMetadata = collectPluginSchemaMetadataImpl;
|
|
export const buildConfigSchema = buildConfigSchemaImpl;
|