| import type { OpenClawConfig } from "../../config/config.js"; | |
| import { resolveGatewayDriftCheckCredentialsFromConfig } from "../../gateway/credentials.js"; | |
| export function resolveGatewayTokenForDriftCheck(params: { | |
| cfg: OpenClawConfig; | |
| env?: NodeJS.ProcessEnv; | |
| }) { | |
| void params.env; | |
| return resolveGatewayDriftCheckCredentialsFromConfig({ cfg: params.cfg }).token; | |
| } | |