Skip to content

Commit

Permalink
🐛 Add missing proto
Browse files Browse the repository at this point in the history
valentinbreiz committed Jan 30, 2024
1 parent b4097a2 commit 870fbb2
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions protos/blacklist.proto
Original file line number Diff line number Diff line change
@@ -8,6 +8,7 @@ service Blacklist {
rpc GetBlackList (GetBlackListRequest) returns (stream GetBlackListReply) {}
rpc GetBlackListUnary (GetBlackListRequest) returns (GetBlackListReply) {}
rpc PutWhiteList (PutWhiteListRequest) returns (PutWhiteListReply) {}
rpc GetBlockCountry (GetBlockCountryRequest) returns (GetBlockCountryReply) {}
}

message PutBlackListRequest {
@@ -36,3 +37,9 @@ message PutWhiteListRequest {

message PutWhiteListReply {
}

message GetBlockCountryRequest {}

message GetBlockCountryReply {
repeated string countries = 1;
}

0 comments on commit 870fbb2

Please sign in to comment.