mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 05:10:44 +00:00
18 lines
487 B
TypeScript
18 lines
487 B
TypeScript
import {
|
|
detectZaiEndpoint as detectZaiEndpointCore,
|
|
type ZaiDetectedEndpoint,
|
|
type ZaiEndpointId,
|
|
} from "./runtime-api.js";
|
|
|
|
type DetectZaiEndpointFn = typeof detectZaiEndpointCore;
|
|
|
|
let detectZaiEndpointImpl: DetectZaiEndpointFn = detectZaiEndpointCore;
|
|
|
|
export async function detectZaiEndpoint(
|
|
...args: Parameters<DetectZaiEndpointFn>
|
|
): ReturnType<DetectZaiEndpointFn> {
|
|
return await detectZaiEndpointImpl(...args);
|
|
}
|
|
|
|
export type { ZaiDetectedEndpoint, ZaiEndpointId };
|