mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-24 08:21:39 +00:00
11 lines
374 B
TypeScript
11 lines
374 B
TypeScript
import { type ResolvedDiscordAccount } from "./accounts.js";
|
|
import { type ChannelPlugin } from "./runtime-api.js";
|
|
import { discordSetupAdapter } from "./setup-core.js";
|
|
import { createDiscordPluginBase } from "./shared.js";
|
|
|
|
export const discordSetupPlugin: ChannelPlugin<ResolvedDiscordAccount> = {
|
|
...createDiscordPluginBase({
|
|
setup: discordSetupAdapter,
|
|
}),
|
|
};
|