-
Daniel Czerwonk authoredDaniel Czerwonk authored
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
bgp.proto 350 B
syntax = "proto3";
package bio.bgp;
import "protocols/bgp/api/session.proto";
option go_package = "protocols/bgp/api";
message ListSessionsRequest {
string name_filter = 1;
}
message ListSessionsResponse {
repeated Session sessions = 1;
}
service BgpService {
rpc ListSessions(ListSessionsRequest) returns (ListSessionsResponse) {}
}