mirror of https://github.com/knative/docs.git
17 lines
410 B
Modula-2
17 lines
410 B
Modula-2
module github.com/knative/docs/code-samples/serving/grpc-ping-go
|
|
|
|
go 1.22.2
|
|
|
|
require (
|
|
github.com/golang/protobuf v1.5.4
|
|
golang.org/x/net v0.29.0
|
|
google.golang.org/grpc v1.66.2
|
|
)
|
|
|
|
require (
|
|
golang.org/x/sys v0.25.0 // indirect
|
|
golang.org/x/text v0.18.0 // indirect
|
|
google.golang.org/genproto/googleapis/rpc v0.0.0-20240604185151-ef581f913117 // indirect
|
|
google.golang.org/protobuf v1.34.1 // indirect
|
|
)
|