4e25b6e83a
* Add `--single-package-mode option` * Add `getMessageType` helper * Add `getProtoFile` helper * Add `examples/single-package-mode` example
12 lines
230 B
Protocol Buffer
12 lines
230 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
option go_package = "github.com/moul/protoc-gen-gotemplate/examples/single-package-mode/output/aaa";
|
|
|
|
package the.aaa.package;
|
|
|
|
message AaaRequest {
|
|
string blah = 1;
|
|
}
|
|
message AaaReply {
|
|
string error = 1;
|
|
} |