mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-22 15:31:07 +00:00
13 lines
450 B
TypeScript
13 lines
450 B
TypeScript
import { type ResolvedSlackAccount } from "./accounts.js";
|
|
import { type ChannelPlugin } from "./runtime-api.js";
|
|
import { slackSetupAdapter } from "./setup-core.js";
|
|
import { slackSetupWizard } from "./setup-surface.js";
|
|
import { createSlackPluginBase } from "./shared.js";
|
|
|
|
export const slackSetupPlugin: ChannelPlugin<ResolvedSlackAccount> = {
|
|
...createSlackPluginBase({
|
|
setupWizard: slackSetupWizard,
|
|
setup: slackSetupAdapter,
|
|
}),
|
|
};
|