github.com/tickoalcantara12/micro/v3@v3.0.0-20221007104245-9d75b9bcbab9/client/cli/new/template/module.go (about) 1 package template 2 3 var ( 4 Module = `module {{.Dir}} 5 6 go 1.18 7 8 require ( 9 github.com/golang/protobuf latest 10 github.com/tickoalcantara12/micro/v3 latest 11 google.golang.org/protobuf latest 12 ) 13 14 // This can be removed once etcd becomes go gettable, version 3.4 and 3.5 is not, 15 // see https://github.com/etcd-io/etcd/issues/11154 and https://github.com/etcd-io/etcd/issues/11931. 16 replace google.golang.org/grpc => google.golang.org/grpc v1.27.1 17 ` 18 )