mirror of https://github.com/openclaw/openclaw.git
12 lines
394 B
TypeScript
12 lines
394 B
TypeScript
import { definePluginEntry } from "openclaw/plugin-sdk/plugin-entry";
|
|
import { migrateElevenLabsLegacyTalkConfig } from "./config-compat.js";
|
|
|
|
export default definePluginEntry({
|
|
id: "elevenlabs",
|
|
name: "ElevenLabs Setup",
|
|
description: "Lightweight ElevenLabs setup hooks",
|
|
register(api) {
|
|
api.registerConfigMigration((config) => migrateElevenLabsLegacyTalkConfig(config));
|
|
},
|
|
});
|