/*** UTILITY ------------------------------------------ ***/ import type { Fetcher, FetcherOptions } from "./types.ts"; /*** EXPORT ------------------------------------------- ***/ /** * WebSocket fetcher for graphql-ws protocol. * Stub implementation — see PLAN.md stage v0.4 for full implementation. */ export function createWsFetcher(_options: FetcherOptions): Fetcher { return () => { throw new Error("WebSocket fetcher not yet implemented — see PLAN.md v0.4"); }; }