mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:20:43 +00:00
7 lines
283 B
TypeScript
7 lines
283 B
TypeScript
import type { OpenClawConfig } from "openclaw/plugin-sdk/config-types";
|
|
import { inspectSlackAccount } from "./src/account-inspect.js";
|
|
|
|
export function inspectSlackReadOnlyAccount(cfg: OpenClawConfig, accountId?: string | null) {
|
|
return inspectSlackAccount({ cfg, accountId });
|
|
}
|