gitextract_mwgdltlr/ ├── .gitignore ├── .travis.yml ├── AUTHORS ├── LICENSE ├── README.md ├── alloptions_test.go ├── examples/ │ ├── alloptions/ │ │ ├── alloptions.nrpc.go │ │ ├── alloptions.pb.go │ │ ├── alloptions.proto │ │ ├── alloptions_test.go │ │ ├── main.go │ │ └── testrunner_test.go │ ├── helloworld/ │ │ ├── greeter_client/ │ │ │ └── main.go │ │ ├── greeter_server/ │ │ │ ├── main.go │ │ │ ├── main_test.go │ │ │ └── testrunner_test.go │ │ └── helloworld/ │ │ ├── helloworld.go │ │ ├── helloworld.nrpc.go │ │ ├── helloworld.pb.go │ │ └── helloworld.proto │ ├── metrics_helloworld/ │ │ ├── helloworld/ │ │ │ ├── helloworld.go │ │ │ ├── helloworld.nrpc.go │ │ │ ├── helloworld.pb.go │ │ │ └── helloworld.proto │ │ ├── metrics_greeter_client/ │ │ │ └── main.go │ │ └── metrics_greeter_server/ │ │ └── main.go │ └── nooption/ │ ├── nooption.go │ ├── nooption.nrpc.go │ ├── nooption.pb.go │ └── nooption.proto ├── go.mod ├── go.sum ├── helloworld_test.go ├── nrpc.go ├── nrpc.pb.go ├── nrpc.proto ├── nrpc_test.go ├── nrpc_test.proto ├── nrpcpb_test.go ├── protoc-gen-nrpc/ │ ├── main.go │ └── tmpl.go └── testrunner_test.go