mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-14 11:10:44 +00:00
8 lines
371 B
TypeScript
8 lines
371 B
TypeScript
import { buildChannelConfigSchema } from "openclaw/plugin-sdk/channel-config-primitives";
|
|
import { MattermostConfigSchema } from "./config-schema-core.js";
|
|
import { mattermostChannelConfigUiHints } from "./config-ui-hints.js";
|
|
|
|
export const MattermostChannelConfigSchema = buildChannelConfigSchema(MattermostConfigSchema, {
|
|
uiHints: mattermostChannelConfigUiHints,
|
|
});
|