Add search and avatar services
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-28 18:04:45 -05:00
parent 0405aba995
commit c400d2d58b
2 changed files with 20 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ service UsersService {
rpc Create(UserRequest) returns (IdMessage);
rpc Delete(IdMessage) returns (NullResponse);
rpc List(ListRequest) returns (UserList);
rpc SearchByUsername(SearchByUsernameRequest) returns (UserList);
}
message IdList {
@@ -55,6 +56,11 @@ message Pagination {
int32 Number = 2;
}
message SearchByUsernameRequest {
string Query = 1;
Pagination Page = 2;
}
message NullResponse {
}