RoarkeRandall
RoarkeRandall
Hey, thanks for looking into this so quickly! i haven't tried your latest update, but I tried a few different configs just now (on version 1.1.0): ``` # bans `context.TODO()`...
I just confirmed the same behavior with the latest code (1.1.1)
I've noticed if I have two proto files in the same directory: rpc/service.proto rpc/messages.proto where service.proto imports messages.proto like this: ``` import "messages.proto" ``` the extension will give an error,...
I'm looking for something similar. I have a tracing middleware and want to set the operation name to the route that was matched for a request. Using your example (simplified):...
Essentially, given an `*http.Request`, you should be able to get the handler's pattern, rather than the requests path (`/api/v1/products/{id}` rather than `api/v1/products/319093`)
I'm trying to pull a repeated EnumValueOption and I'm not sure how to do it. I'm able to do this in go and it appears it's possible in c#. I...
I keep reading comments that it's a proto2 feature, and not proto3, but that isn't the case. From the docs: https://developers.google.com/protocol-buffers/docs/proto3#options > Custom Options > Protocol Buffers also allows you...
> I don't think completely dropping mock or code from auto-generated files is a good idea - that will take away from users an option to check the full list...