We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd823e4 commit 14622d3Copy full SHA for 14622d3
dsl/meta.go
@@ -5,6 +5,10 @@ import (
5
"goa.design/goa/v3/expr"
6
)
7
8
+// DefaultProtoc is the default command to be invoked for generating code from protobuf schemas.
9
+// You may use this to prepend arguments/flags to the command or revert to the default command.
10
+//
11
+// See also [Meta]; this is useful with the "protoc:cmd" key.
12
const DefaultProtoc = expr.DefaultProtoc
13
14
// Meta defines a set of key/value pairs that can be assigned to an object. Each
expr/root.go
@@ -11,6 +11,7 @@ import (
// Root is the root object built by the DSL.
var Root = new(RootExpr)
15
const DefaultProtoc = "protoc"
16
17
type (
0 commit comments