mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-19 14:00:51 +00:00
build: add setup entrypoints for migrated channel plugins
This commit is contained in:
@@ -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",
|
||||
|
||||
5
extensions/mattermost/setup-entry.ts
Normal file
5
extensions/mattermost/setup-entry.ts
Normal file
@@ -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",
|
||||
|
||||
5
extensions/nostr/setup-entry.ts
Normal file
5
extensions/nostr/setup-entry.ts
Normal file
@@ -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",
|
||||
|
||||
5
extensions/zalo/setup-entry.ts
Normal file
5
extensions/zalo/setup-entry.ts
Normal file
@@ -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",
|
||||
|
||||
5
extensions/zalouser/setup-entry.ts
Normal file
5
extensions/zalouser/setup-entry.ts
Normal file
@@ -0,0 +1,5 @@
|
||||
import { zalouserPlugin } from "./src/channel.js";
|
||||
|
||||
export default {
|
||||
plugin: zalouserPlugin,
|
||||
};
|
||||
Reference in New Issue
Block a user