mirror of
https://github.com/cubixle/tuugen.git
synced 2026-04-24 22:34:41 +01:00
8 lines
188 B
Go
8 lines
188 B
Go
package tuugen
|
|
|
|
func GenerateProtos() error {
|
|
cmd := "protoc"
|
|
args := []string{"-I", ".:${GOPATH}/src", "--go_out=.", "--go-grpc_out=.", "service.proto"}
|
|
return runCommand(cmd, args)
|
|
}
|