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 @@ -59,7 +59,7 @@ message HelloReply {
5959Service typings are not essential, but it's nice to have them
6060
6161``` sh
62- $ deno run --allow-read https://deno.land/x/grpc_basic@0.4.4 /gen/dts.ts ./greeter.proto > ./greeter.d.ts
62+ $ deno run --allow-read https://deno.land/x/grpc_basic@0.4.5 /gen/dts.ts ./greeter.proto > ./greeter.d.ts
6363```
6464
6565``` ts
@@ -80,7 +80,7 @@ export interface HelloReply {
8080### ` server.ts `
8181
8282``` ts
83- import { GrpcServer } from " https://deno.land/x/grpc_basic@0.4.3 /server.ts" ;
83+ import { GrpcServer } from " https://deno.land/x/grpc_basic@0.4.5 /server.ts" ;
8484import { Greeter } from " ./greeter.d.ts" ;
8585
8686const port = 15070 ;
@@ -114,7 +114,7 @@ for await (const conn of Deno.listen({ port })) {
114114### ` client.ts `
115115
116116``` ts
117- import { getClient } from " https://deno.land/x/grpc_basic@0.4.3 /client.ts" ;
117+ import { getClient } from " https://deno.land/x/grpc_basic@0.4.5 /client.ts" ;
118118import { Greeter } from " ./greeter.d.ts" ;
119119
120120const protoPath = new URL (" ./greeter.proto" , import .meta .url );
You can’t perform that action at this time.
0 commit comments