Files
orion_greptime_proto/scripts/generate-go.sh
T
liyang a6ce3ceb46 refactor: genetate protobuf (#259)
* refactor: genetate protobuf

* make all
2025-08-01 17:37:20 +08:00

10 lines
179 B
Bash
Executable File

#! /usr/bin/env bash
set -e
PROTO_ROOT=./proto
GO_OUTPUT=./go
protoc -I=${PROTO_ROOT} --go_out=paths=source_relative:${GO_OUTPUT} $(find ./proto/ -type f -iname "*.proto")