-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.go
45 lines (40 loc) · 1.03 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package main
import (
"github.com/spf13/cobra"
"google.golang.org/protobuf/compiler/protogen"
"google.golang.org/protobuf/types/pluginpb"
"log"
)
var (
omitempty bool
omitemptyPrefix string
)
var rootCmd = &cobra.Command{
Use: "protoc-gen-go-fiber",
Short: "Generate Go code for Fiber from Protocol Buffers",
Version: release,
Run: func(cmd *cobra.Command, args []string) {
protogen.Options{
ParamFunc: cmd.Flags().Set,
}.Run(func(gen *protogen.Plugin) error {
gen.SupportedFeatures = uint64(pluginpb.CodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL)
for _, f := range gen.Files {
if !f.Generate {
continue
}
generateFile(gen, f, omitempty, omitemptyPrefix)
}
return nil
})
},
}
func init() {
rootCmd.Flags().BoolVar(&omitempty, "omitempty", true, "omit if google.api is empty")
rootCmd.Flags().StringVar(&omitemptyPrefix, "omitempty_prefix", "", "omit if google.api is empty")
rootCmd.AddCommand(addTagCmd)
}
func main() {
if err := rootCmd.Execute(); err != nil {
log.Fatal(err)
}
}