Skip to content

Commit

Permalink
mv transport
Browse files Browse the repository at this point in the history
  • Loading branch information
srikrsna-buf committed Dec 1, 2023
1 parent 19e2253 commit 72df9b6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/connect-conformance/src/node/client.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {
ClientErrorResult,
} from "../gen/connectrpc/conformance/v1/client_compat_pb.js";
import invoke from "../invoke.js";
import { createTransport } from "../transport.js";
import { createTransport } from "./transport.js";
import type { ReadStream } from "node:tty";

export async function run() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
// limitations under the License.

import { createRegistry } from "@bufbuild/protobuf";
import { ClientCompatRequest } from "./gen/connectrpc/conformance/v1/client_compat_pb.js";
import { ClientCompatRequest } from "../gen/connectrpc/conformance/v1/client_compat_pb.js";
import {
Codec,
HTTPVersion,
Protocol,
Compression as ConformanceCompression,
} from "./gen/connectrpc/conformance/v1/config_pb.js";
} from "../gen/connectrpc/conformance/v1/config_pb.js";
import {
createConnectTransport,
createGrpcTransport,
Expand All @@ -33,7 +33,7 @@ import {
ClientStreamRequest,
ServerStreamRequest,
UnaryRequest,
} from "./gen/connectrpc/conformance/v1/service_pb.js";
} from "../gen/connectrpc/conformance/v1/service_pb.js";
import * as http2 from "node:http2";

export function createTransport(req: ClientCompatRequest) {
Expand Down

0 comments on commit 72df9b6

Please sign in to comment.