Skip to content

Commit

Permalink
fix: stamp
Browse files Browse the repository at this point in the history
  • Loading branch information
bookpanda committed Jun 24, 2024
1 parent 52c125e commit 6c53ecf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rpkm67/backend/stamp/v1/stamp.proto
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ package rpkm67.backend.stamp.v1;
option go_package = "rpkm67/backend/stamp/v1";

service StampService {
rpc GetByUserId(GetByUserIdStampRequest) returns (GetByUserIdStampResponse){}
rpc FindByUserId(FindByUserIdStampRequest) returns (FindByUserIdStampResponse){}
rpc Stamp(StampRequest) returns (StampResponse) {}
}

Expand All @@ -29,12 +29,12 @@ message Stamp{
bool institute2 = 17;
}

// GetByUserId
message GetByUserIdStampRequest{
// FindByUserId
message FindByUserIdStampRequest{
string userId = 1;
}

message GetByUserIdStampResponse{
message FindByUserIdStampResponse{
Stamp stamp = 1;
}

Expand Down

0 comments on commit 6c53ecf

Please sign in to comment.