diff --git a/proto/accounts/accounts_v1.proto b/proto/accounts/accounts_v1.proto index 3dd5b3f..fa50a06 100644 --- a/proto/accounts/accounts_v1.proto +++ b/proto/accounts/accounts_v1.proto @@ -1,6 +1,7 @@ /// This file has messages for describing environments syntax = "proto3"; package accounts; +import "google/protobuf/empty.proto"; option go_package = "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/accounts"; /** @@ -9,9 +10,9 @@ option go_package = "git.badhouseplants.net/softplayer/softplayer-go-proto/pkg/a service Accounts { rpc SignUp (AccountWithPassword) returns (AccountFullWithToken) {} rpc SignIn (AccountWithPassword) returns (AccountFullWithToken) {} + rpc ResetPassword (AccountData) returns (google.protobuf.Empty) {} } - /** * Represents a environment UUID only */