Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

proto: Move .proto files to dolthub/vt subdirectory and package name. #166

Merged
merged 1 commit into from
Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions gen_proto_go.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash

go install github.com/golang/protobuf/protoc-gen-go
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess binlogdata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess replicationdata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess time.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess logutil.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess vtrpc.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess topodata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess query.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess vtgate.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/binlogdata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/replicationdata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/time.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/logutil.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/vtrpc.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/topodata.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/query.proto
protoc --proto_path=proto --go_out=. --go_opt=module=github.com/dolthub/vitess dolthub/vt/vtgate.proto
1,018 changes: 527 additions & 491 deletions go/vt/proto/binlogdata/binlogdata.pb.go

Large diffs are not rendered by default.

119 changes: 61 additions & 58 deletions go/vt/proto/logutil/logutil.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading