File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ message HelloReply {
5656Service typings are not essential, but it's nice to have them
5757
5858``` sh
59- $ deno run --allow-read https://deno.land/x/grpc_basic@0.4.6 /gen/dts.ts ./greeter.proto > ./greeter.d.ts
59+ $ deno run --allow-read https://deno.land/x/grpc_basic@0.4.7 /gen/dts.ts ./greeter.proto > ./greeter.d.ts
6060```
6161
6262``` ts
@@ -77,7 +77,7 @@ export interface HelloReply {
7777### ` server.ts `
7878
7979``` ts
80- import { GrpcServer } from " https://deno.land/x/grpc_basic@0.4.6 /server.ts" ;
80+ import { GrpcServer } from " https://deno.land/x/grpc_basic@0.4.7 /server.ts" ;
8181import { Greeter } from " ./greeter.d.ts" ;
8282
8383const port = 50051 ;
@@ -111,7 +111,7 @@ for await (const conn of Deno.listen({ port })) {
111111### ` client.ts `
112112
113113``` ts
114- import { getClient } from " https://deno.land/x/grpc_basic@0.4.6 /client.ts" ;
114+ import { getClient } from " https://deno.land/x/grpc_basic@0.4.7 /client.ts" ;
115115import { Greeter } from " ./greeter.d.ts" ;
116116
117117const protoPath = new URL (" ./greeter.proto" , import .meta .url );
You can’t perform that action at this time.
0 commit comments