Files
openclaw/extensions/telegram/account-inspect-api.ts
2026-04-16 21:54:13 +01:00

7 lines
276 B
TypeScript

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 });
}