mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-12 12:23:27 +02:00
14 lines
373 B
TypeScript
14 lines
373 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
plugin: {
|
|
specifier: "./channel-plugin-api.js",
|
|
exportName: "telegramSetupPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./src/secret-contract.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
});
|