mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 12:40:43 +00:00
7 lines
276 B
TypeScript
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 });
|
|
}
|