Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: service/rawdatastore/internal/protos/datastore/datastore_v3.proto

Issue 1243323002: Refactor a bit. (Closed) Base URL: https://github.com/luci/gae.git@master
Patch Set: fix golint Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 syntax = "proto2"; 1 syntax = "proto2";
2 option go_package = "datastore"; 2 option go_package = "datastore";
3 3
4 package appengine; 4 package appengine;
5 5
6 message Action{} 6 message Action{}
7 7
8 message PropertyValue { 8 message PropertyValue {
9 optional int64 int64Value = 1; 9 optional int64 int64Value = 1;
10 optional bool booleanValue = 2; 10 optional bool booleanValue = 2;
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
532 } 532 }
533 533
534 message CommitResponse { 534 message CommitResponse {
535 optional Cost cost = 1; 535 optional Cost cost = 1;
536 536
537 repeated group Version = 3 { 537 repeated group Version = 3 {
538 required Reference root_entity_key = 4; 538 required Reference root_entity_key = 4;
539 required int64 version = 5; 539 required int64 version = 5;
540 } 540 }
541 } 541 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698