mirror of https://github.com/openclaw/openclaw.git
refactor(feishu): split comment dispatcher seam
This commit is contained in:
parent
349d3e8289
commit
851de3554e
|
|
@ -0,0 +1,6 @@
|
|||
export {
|
||||
createReplyPrefixContext,
|
||||
type ClawdbotConfig,
|
||||
type ReplyPayload,
|
||||
type RuntimeEnv,
|
||||
} from "openclaw/plugin-sdk/feishu";
|
||||
|
|
@ -1,12 +1,12 @@
|
|||
import { resolveSendableOutboundReplyParts } from "openclaw/plugin-sdk/reply-payload";
|
||||
import { resolveFeishuRuntimeAccount } from "./accounts.js";
|
||||
import { createFeishuClient } from "./client.js";
|
||||
import {
|
||||
createReplyPrefixContext,
|
||||
type ClawdbotConfig,
|
||||
type ReplyPayload,
|
||||
type RuntimeEnv,
|
||||
} from "../runtime-api.js";
|
||||
import { resolveFeishuRuntimeAccount } from "./accounts.js";
|
||||
import { createFeishuClient } from "./client.js";
|
||||
} from "./comment-dispatcher-runtime-api.js";
|
||||
import type { CommentFileType } from "./comment-target.js";
|
||||
import { deliverCommentThreadText } from "./drive.js";
|
||||
import { getFeishuRuntime } from "./runtime.js";
|
||||
|
|
|
|||
Loading…
Reference in New Issue