Files
openclaw/src/gateway/server-network-runtime.ts
2026-06-04 17:45:49 -04:00

9 lines
381 B
TypeScript

// Gateway network runtime bootstrap.
// Installs process-wide outbound network/proxy configuration before server fetches.
import { ensureGlobalUndiciEnvProxyDispatcher } from "../infra/net/undici-global-dispatcher.js";
/** Applies process-wide gateway network runtime setup. */
export function bootstrapGatewayNetworkRuntime(): void {
ensureGlobalUndiciEnvProxyDispatcher();
}