micro/auth/service/proto/accounts.proto
Vasiliy Tolstov 756b346672
auth/service: move all proto files to single dir (#1439)
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-03-30 18:23:00 +03:00

17 lines
254 B
Protocol Buffer

syntax = "proto3";
package go.micro.auth;
import "auth.proto";
service Accounts {
rpc List(ListAccountsRequest) returns (ListAccountsResponse) {};
}
message ListAccountsRequest {
}
message ListAccountsResponse {
repeated Account accounts = 1;
}