mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 23:20:43 +00:00
17 lines
423 B
TypeScript
17 lines
423 B
TypeScript
import { defineBundledChannelSetupEntry } from "openclaw/plugin-sdk/channel-entry-contract";
|
|
|
|
export default defineBundledChannelSetupEntry({
|
|
importMetaUrl: import.meta.url,
|
|
features: {
|
|
legacyStateMigrations: true,
|
|
},
|
|
plugin: {
|
|
specifier: "./setup-plugin-api.js",
|
|
exportName: "telegramSetupPlugin",
|
|
},
|
|
secrets: {
|
|
specifier: "./secret-contract-api.js",
|
|
exportName: "channelSecrets",
|
|
},
|
|
});
|