Removed go files dependencies

This commit is contained in:
arches 2016-06-01 06:36:59 -04:00
parent b78da53aa3
commit 221cdf39f2
2 changed files with 0 additions and 15 deletions

View File

@ -1,14 +1,6 @@
syntax = "proto3"; syntax = "proto3";
package authpb; package authpb;
import "gogoproto/gogo.proto";
option (gogoproto.marshaler_all) = true;
option (gogoproto.sizer_all) = true;
option (gogoproto.unmarshaler_all) = true;
option (gogoproto.goproto_getters_all) = false;
option (gogoproto.goproto_enum_prefix_all) = false;
// User is a single entry in the bucket authUsers // User is a single entry in the bucket authUsers
message User { message User {
bytes name = 1; bytes name = 1;

View File

@ -1,13 +1,6 @@
syntax = "proto3"; syntax = "proto3";
package mvccpb; package mvccpb;
import "gogoproto/gogo.proto";
option (gogoproto.marshaler_all) = true;
option (gogoproto.sizer_all) = true;
option (gogoproto.unmarshaler_all) = true;
option (gogoproto.goproto_getters_all) = false;
option (gogoproto.goproto_enum_prefix_all) = false;
message KeyValue { message KeyValue {
// key is the key in bytes. An empty key is not allowed. // key is the key in bytes. An empty key is not allowed.