Fix broken protos
This commit is contained in:
@ -9,15 +9,15 @@ option go_package = "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/e
|
||||
*/
|
||||
service EmailValidation {
|
||||
rpc SendRequest (RequestValidation) returns (google.protobuf.Empty) {}
|
||||
rpc ValidateEmail (Code) returns (google.protobuf.Empty) {}
|
||||
rpc ValidateEmail (ConfirmValidation) returns (google.protobuf.Empty) {}
|
||||
}
|
||||
|
||||
message RequestValidation {
|
||||
string user_id = 0;
|
||||
string user_id = 1;
|
||||
}
|
||||
|
||||
message ConfirmValidation {
|
||||
string user_id = 0;
|
||||
int32 code = 1;
|
||||
string user_id = 1;
|
||||
int32 code = 2;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user