Categorygithub.com/pjoc-team/timer-proto
repository
0.0.1
Repository: https://github.com/pjoc-team/timer-proto.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

proto

Install grpc

go get -u google.golang.org/grpc

get_latest_release() {
  curl --silent "https://api.github.com/repos/$1/releases/latest" | # Get latest release from GitHub api
    grep '"tag_name":' |                                            # Get tag line
    sed -E 's/.*"([^"]+)".*/\1/'                                    # Pluck JSON value
}

latest=`get_latest_release "protocolbuffers/protobuf"`
package="protobuf-all-$latest.tar.gz"
curl -L "https://github.com/protocolbuffers/protobuf/releases/download/$latest/$package" -o $package