yats.git

ref: f371af5f199691912f766ce813b5e8df7e5d756c

protobuf/generate.sh


 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
#! /bin/bash -x


cd $(dirname $0)
TARGET_DIR="../server/crudpb/"

SOURCES="metric.proto"

for s in ${SOURCES}; do
  protoc --go_out=${TARGET_DIR}\
  --go_opt=paths=source_relative\
  --go-grpc_out=${TARGET_DIR}\
  --go-grpc_opt=paths=source_relative\
  metric.proto
done