mirror of https://github.com/openclaw/openclaw.git
build: add setup entrypoints for migrated channel plugins
This commit is contained in:
parent
371366e9eb
commit
98dcbd3e7e
|
|
@ -8,6 +8,7 @@
|
|||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "line",
|
||||
"label": "LINE",
|
||||
|
|
|
|||
|
|
@ -11,6 +11,7 @@
|
|||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "mattermost",
|
||||
"label": "Mattermost",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
import { mattermostPlugin } from "./src/channel.js";
|
||||
|
||||
export default {
|
||||
plugin: mattermostPlugin,
|
||||
};
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "nostr",
|
||||
"label": "Nostr",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
import { nostrPlugin } from "./src/channel.js";
|
||||
|
||||
export default {
|
||||
plugin: nostrPlugin,
|
||||
};
|
||||
|
|
@ -11,6 +11,7 @@
|
|||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "zalo",
|
||||
"label": "Zalo",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
import { zaloPlugin } from "./src/channel.js";
|
||||
|
||||
export default {
|
||||
plugin: zaloPlugin,
|
||||
};
|
||||
|
|
@ -12,6 +12,7 @@
|
|||
"extensions": [
|
||||
"./index.ts"
|
||||
],
|
||||
"setupEntry": "./setup-entry.ts",
|
||||
"channel": {
|
||||
"id": "zalouser",
|
||||
"label": "Zalo Personal",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
import { zalouserPlugin } from "./src/channel.js";
|
||||
|
||||
export default {
|
||||
plugin: zalouserPlugin,
|
||||
};
|
||||
Loading…
Reference in New Issue