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