mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-12 21:53:00 -06:00
1e9a620a28
* refactor(gateway): remove deferred channel load flag; 503 plugin routes until runtime ready * test(agents): make setup middleware load intent explicit * test(gateway): pin webhook startup routing outside SPA
19 lines
519 B
TypeScript
19 lines
519 B
TypeScript
// Slack plugin module implements setup entry behavior.
|
|
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./setup-plugin-api.js",
|
|
exportName: "slackSetupPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
runtime: {
|
|
specifier: "./runtime-setter-api.js",
|
|
exportName: "setSlackRuntime",
|
|
},
|
|
});
|