Add commands for listing inbound and outbound tags.

This commit is contained in:
Sergey Gorbunov 2025-05-13 16:56:23 +03:00
parent 7cb8cfb9eb
commit 229a4b3fe1
No known key found for this signature in database
GPG key ID: A8C3D74066B8E768
8 changed files with 181 additions and 235 deletions

View file

@ -56,12 +56,6 @@ message GetInboundUsersCountResponse {
int64 count = 1;
}
message ListInboundUserRequest {}
message ListInboundUserResponse {
repeated xray.common.protocol.User users = 1;
}
message AddOutboundRequest {
core.OutboundHandlerConfig outbound = 1;
}
@ -100,8 +94,6 @@ service HandlerService {
rpc GetInboundUsersCount(GetInboundUserRequest) returns (GetInboundUsersCountResponse) {}
rpc ListInboundUsers(ListInboundUserRequest) returns (ListInboundUserResponse) {}
rpc AddOutbound(AddOutboundRequest) returns (AddOutboundResponse) {}
rpc RemoveOutbound(RemoveOutboundRequest) returns (RemoveOutboundResponse) {}