Constructor generator for Go.
//genconstructor [-p]
type Foo struct {
key string `required:"[constValue]"`
}
with go generate
command
//go:generate go-genconstructor
generated ./_example/example_constructor_gen.go
$ go get github.com/hori-ryota/go-genconstructor