Code

Add an initial version of sample code for my Go talk.
authorSebastian Harl <sh@tokkee.org>
Wed, 4 May 2016 07:48:01 +0000 (09:48 +0200)
committerSebastian Harl <sh@tokkee.org>
Wed, 4 May 2016 07:48:01 +0000 (09:48 +0200)
commit8e533c849e5b0053a1949dcbf98f8948a7501499
treea48e73a97393f918e83d8c9931ba599311c3aa43
Add an initial version of sample code for my Go talk.

This includes a sample RPC server and client along with a sample HTTP server
based on the examples from the talk.

In addition, there are sample integration tests.
LICENSE [new file with mode: 0644]
README [new file with mode: 0644]
grpc/client/main.go [new file with mode: 0644]
grpc/integration/backend/backend_test.go [new file with mode: 0644]
grpc/integration/ui/ui_test.go [new file with mode: 0644]
grpc/proto/backend/backend.pb.go [new file with mode: 0644]
grpc/proto/backend/backend.proto [new file with mode: 0644]
grpc/server/main.go [new file with mode: 0644]
grpc/ui/main.go [new file with mode: 0644]