mirror of
https://github.com/go-micro/go-micro.git
synced 2025-01-23 17:53:05 +02:00
c706ebe3fb
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
19 lines
288 B
Protocol Buffer
19 lines
288 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package go.micro.auth;
|
|
|
|
option go_package = "auth;auth";
|
|
|
|
import "auth.proto";
|
|
|
|
service Accounts {
|
|
rpc List(ListAccountsRequest) returns (ListAccountsResponse) {};
|
|
}
|
|
|
|
message ListAccountsRequest {
|
|
}
|
|
|
|
message ListAccountsResponse {
|
|
repeated Account accounts = 1;
|
|
}
|