Rename "rover" to "status"

This commit is contained in:
Marc Di Luzio 2020-07-04 23:11:12 +01:00
parent f8e594cb39
commit 894359142b
7 changed files with 196 additions and 196 deletions

View file

@ -52,9 +52,9 @@ service Rove {
// Get rover information
//
// Gets information for the account's rover
rpc Rover(RoverRequest) returns (RoverResponse) {
rpc Status(StatusRequest) returns (StatusResponse) {
option (google.api.http) = {
post: "/rover"
post: "/status"
body: "*"
};
}
@ -112,12 +112,12 @@ message RegisterRequest {
string name = 1;
}
message RoverRequest {
message StatusRequest {
// The account for this request
string account = 1;
}
message RoverResponse {
message StatusResponse {
// The name of the rover
string name = 1;