File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change 66
66
errNoDoc = errors .New ("could not read discovery doc" )
67
67
)
68
68
69
+ // skipAPIGeneration is a set of APIs to not generate when generating all clients.
70
+ var skipAPIGeneration = map [string ]bool {
71
+ "sql:v1beta4" : true ,
72
+ "integrations:v1" : true ,
73
+ }
74
+
69
75
// API represents an API to generate, as well as its state while it's
70
76
// generating.
71
77
type API struct {
@@ -122,11 +128,6 @@ func (e *compileError) Error() string {
122
128
return fmt .Sprintf ("API %s failed to compile:\n %v" , e .api .ID , e .output )
123
129
}
124
130
125
- // skipAPIGeneration is a set of APIs to not generate when generating all clients.
126
- var skipAPIGeneration = map [string ]bool {
127
- "sql:v1beta4" : true ,
128
- }
129
-
130
131
func main () {
131
132
flag .Parse ()
132
133
You can’t perform that action at this time.
0 commit comments