mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-16 18:51:37 +00:00
8 lines
335 B
TypeScript
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 });
|
|
}
|