-
[CONTRIBUTING.md](https://github.com/twitchtv/twirp/blob/master/CONTRIBUTING.md) says:
```
Twirp uses github pull requests. Fork a branch from develop, ...
```
but no develop branch exists. Are t…
-
There has been a really incredible burst of community-written generators. I want to highlight them and send people towards them.
Let's add a bit to the README, close to the top, that lists the gene…
-
This is a copy pasta from #15:
When attempting to import descriptor.proto I run into a Go import issue on the compiled Go.
"google/protobuf/descriptor.proto";
Reproducible:
```Protobuf
syntax…
polds updated
6 years ago
-
There are several code issues on the https://github.com/twitchtv/twirp/wiki page. While nothing is advertising those snippets as 100% perfect, it'd be nice to have the egregious errors fixed. Notabl…
-
Following on the ICEs from #52217, here are the 591 occurrences of ICEs in the [3rd NLL crater run](https://crater-reports.s3.amazonaws.com/pr-53426/index.html) from #53426 (out of the 982 regressions…
-
I really like this library and think it would benefit from being able to support both standard RPC as well as GRPC as well. Looking through the code it seems to only generate standard HTTP RPC bindin…
-
Some of my Services have empty request bodies.
For example:
```
message BarRequest {
}
message BarResponse {
string hey = 1;
}
service Foo {
// ReleaseList will return a list of r…
-
The generated code for server expects Header with `Content-Type` of either `application/json` or `application/protobuf`.
Servers deal with the `Accept` header to determine the accept response typ…
-
It would be great to remove dependency to `http.Client` type. Instead of this interface can be used:
```go
// HTTPClient sends http.Requests and returns http.Responses or errors in case of failure.
…