mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-01 12:26:47 +00:00
27 lines
753 B
TypeScript
27 lines
753 B
TypeScript
import { defineBundledChannelEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
import { registerSlackPluginHttpRoutes } from "./http-routes-api.js";
|
|
|
|
export default defineBundledChannelEntry({
|
|
id: "slack",
|
|
name: "Slack",
|
|
description: "Slack channel plugin",
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "slackPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-setter-api.js",
|
|
exportName: "setSlackRuntime",
|
|
},
|
|
accountInspect: {
|
|
specifier: "./account-inspect-api.js",
|
|
exportName: "inspectSlackReadOnlyAccount",
|
|
},
|
|
registerFull: registerSlackPluginHttpRoutes,
|
|
});
|