initial commit

This commit is contained in:
cubixle
2021-06-14 20:48:06 +01:00
commit a7ddf5c846
14 changed files with 384 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
package tuugen
func GenerateProtos() error {
cmd := "protoc"
args := []string{"-I", ".:${GOPATH}/src", "--go_out=.", "--go-grpc_out=.", "service.proto"}
return runCommand(cmd, args)
}