You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
393 B
16 lines
393 B
syntax = "proto3"; |
|
|
|
package {{.Package}}; |
|
{{range $key, $value := .Imports}} |
|
import "{{$key}}";{{end}} |
|
|
|
option go_package = "v1"; |
|
{{range .Messages}} |
|
message {{.Name}} { {{range .Fields}} |
|
{{.FieldType}} {{.FieldName}} = {{.FieldID}};{{end}} |
|
} |
|
{{end}} |
|
service {{.Name}} { {{range .Methods}} |
|
{{range .Comments}}// {{.}} {{end}} |
|
rpc {{.Name}}({{.Req}}) returns({{.Reply}}); {{end}} |
|
}
|
|
|