mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-05 13:13:33 +00:00
18 lines
661 B
TypeScript
18 lines
661 B
TypeScript
// Telegram plugin module implements bot native commands behavior.
|
|
export {
|
|
ensureConfiguredBindingRouteReady,
|
|
recordInboundSessionMetaSafe,
|
|
} from "openclaw/plugin-sdk/conversation-runtime";
|
|
export { getAgentScopedMediaLocalRoots } from "openclaw/plugin-sdk/media-runtime";
|
|
export {
|
|
executePluginCommand,
|
|
getPluginCommandSpecs,
|
|
matchPluginCommand,
|
|
} from "openclaw/plugin-sdk/plugin-runtime";
|
|
export {
|
|
finalizeInboundContext,
|
|
resolveChunkMode,
|
|
} from "openclaw/plugin-sdk/reply-dispatch-runtime";
|
|
export { resolveThreadSessionKeys } from "openclaw/plugin-sdk/routing";
|
|
export { getSessionEntry } from "openclaw/plugin-sdk/session-store-runtime";
|