mirror of
https://github.com/google/flatbuffers.git
synced 2026-06-04 04:33:23 +00:00
Implemented server.go and half implemented client.go Finishes implementation for greeter go example Update grpc code for monster.fbs Adds a couple of cpp methods Adhere to gofmt standards Adds a readme for issues with grpc
12 lines
323 B
Modula-2
12 lines
323 B
Modula-2
module github.com/google/flatbuffers/grpc/examples/go/greeter/client
|
|
|
|
go 1.15
|
|
|
|
replace github.com/google/flatbuffers/grpc/examples/go/greeter/models v0.0.0 => ../models
|
|
|
|
require (
|
|
github.com/google/flatbuffers v1.12.0
|
|
github.com/google/flatbuffers/grpc/examples/go/greeter/models v0.0.0
|
|
google.golang.org/grpc v1.35.0
|
|
)
|