mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-09 09:13:59 +00:00
9 lines
381 B
TypeScript
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();
|
|
}
|