2020-03-26 16:12:43 +03:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package go.micro.auth;
|
|
|
|
|
2020-03-30 23:58:32 +03:00
|
|
|
import "auth/service/proto/auth.proto";
|
2020-03-26 16:12:43 +03:00
|
|
|
|
|
|
|
service Accounts {
|
|
|
|
rpc List(ListAccountsRequest) returns (ListAccountsResponse) {};
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListAccountsRequest {
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListAccountsResponse {
|
|
|
|
repeated Account accounts = 1;
|
|
|
|
}
|