-
This issue relates to https://github.com/twitchtv/twirp/pull/97 I believe.
I've been attempting to generate a python client to interact with a Twirp service written in Go and the generated client i…
-
* seems like this allows implementing grpc servers in nim; why not mention grpc in readme and package keyword/description?
Or maybe I'm misunderstanding it
* grpc supports Bi-directional streaming…
-
I faced with some problem, I need to **send and get file via twirp**. I''m not really sure is it the right place to placing this problem, but, How can i get and set files via twirp, I thought about se…
-
Looks like a nice replacement for go-bindata! But it seems to not allow you to use it with go:generate, unless that wasn't the intent. It'd be awesome to just drop `// go:generate packr` in there.
…
-
I've got a protobuf which returns an Empty e.g.
```
syntax = "proto3";
import 'google/protobuf/empty.proto';
service Subscription {
rpc Subscribe(Subscriptions) returns (google.protobuf.Emp…
-
When using go modules outside the GOPATH, you have to specify the `option go_package` in your .proto files
This is due to having no base directory where your full import path lives, so you have to c…
-
Hi,
While evaluating twirp I came across a small issue. I created a simple Protobuf service definition that echoes a message. I decided to call the service Echo with a method of Echo for simplicity…
-
I'm rewriting my REST API to twirp. So far so good.
In my old design I made a HTTP delete request, removed some item in the database, added a flash message to the user's session and redirected on t…
-
I've been playing around with trying to get Twirp running on App Engine Standard. Technically it works, but to call any methods in the appengine package you need an [appengine.Context](https://godoc.o…
polds updated
6 years ago
-
go-kit adopts an excellent concept of middlewares for endpoints.
I would suggest to introduce a similar concept for http transport clients.
The problem with current approach is that kit transpor…