mirror of
https://github.com/ManyakRus/crud_generator.git
synced 2024-12-13 21:42:33 +02:00
8 lines
191 B
Bash
Executable File
8 lines
191 B
Bash
Executable File
#!/bin/bash
|
|
|
|
PATH_FROM=./
|
|
PATH_TO=./
|
|
|
|
clear
|
|
protoc --go_out=${PATH_TO} --nrpc_out=./ --go_opt=paths=import --go-grpc_out=${PATH_TO} --go-grpc_opt=paths=import ${PATH_FROM}sync_service.proto
|