Spaces:
Sleeping
Sleeping
| import type { OpenClawPluginApi } from "openclaw/plugin-sdk"; | |
| import { emptyPluginConfigSchema } from "openclaw/plugin-sdk"; | |
| import { slackPlugin } from "./src/channel.js"; | |
| import { setSlackRuntime } from "./src/runtime.js"; | |
| const plugin = { | |
| id: "slack", | |
| name: "Slack", | |
| description: "Slack channel plugin", | |
| configSchema: emptyPluginConfigSchema(), | |
| register(api: OpenClawPluginApi) { | |
| setSlackRuntime(api.runtime); | |
| api.registerChannel({ plugin: slackPlugin }); | |
| }, | |
| }; | |
| export default plugin; | |