konfa-server/proto/konfa/server/v1/service.proto
royalcat 530c24b019
All checks were successful
docker / build-docker (push) Successful in 2m20s
wip
2024-12-23 15:54:51 +03:00

20 lines
No EOL
438 B
Protocol Buffer

syntax = "proto3";
package konfa.server.v1;
option go_package = "/serverv1";
// import "google/protobuf/timestamp.proto";
import "konfa/channel/v1/channels.proto";
service ServerService {
rpc ListServerChannels(ListServerChannelsRequest) returns (ListServerChannelsResponse) {}
}
message ListServerChannelsRequest {
string server_id = 1;
}
message ListServerChannelsResponse {
repeated konfa.channel.v1.Channel channels = 1;
}