refactor: trim unused core exports

This commit is contained in:
Peter Steinberger
2026-05-02 06:04:52 +01:00
parent 6fd35f67a7
commit 8819f258cc
2 changed files with 0 additions and 5 deletions

View File

@@ -63,7 +63,3 @@ export function registerConfiguredBindingConsumer(consumer: ConfiguredBindingCon
id,
});
}
export function unregisterConfiguredBindingConsumer(id: string): void {
registeredConfiguredBindingConsumers.delete(id.trim());
}

View File

@@ -5,7 +5,6 @@ import { fetchWithRuntimeDispatcher } from "../runtime-fetch.js";
import { createHttp1ProxyAgent } from "../undici-runtime.js";
export const DEFAULT_PROXY_VALIDATION_ALLOWED_URLS = ["https://example.com/"] as const;
export const DEFAULT_PROXY_VALIDATION_DENIED_URLS = ["http://127.0.0.1/"] as const;
export const DEFAULT_PROXY_VALIDATION_TIMEOUT_MS = 5000;
const DENIED_CANARY_HEADER = "x-openclaw-proxy-validation-canary";