Files
openclaw/extensions/telegram/account-inspect-api.ts
2026-06-04 22:03:15 -04:00

8 lines
335 B
TypeScript

// Telegram API module exposes the plugin public contract.
import type { OpenClawConfig } from "./runtime-api.js";
import { inspectTelegramAccount } from "./src/account-inspect.js";
export function inspectTelegramReadOnlyAccount(cfg: OpenClawConfig, accountId?: string | null) {
return inspectTelegramAccount({ cfg, accountId });
}