Skip to content
This repository has been archived by the owner on Dec 11, 2024. It is now read-only.

Commit

Permalink
chore: update proto client
Browse files Browse the repository at this point in the history
  • Loading branch information
meline-proto-updater[bot] committed Nov 20, 2024
1 parent 4e0e1ac commit d276959
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions client/src/generated/proto/user.proto
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
syntax = "proto3";

package meline;

option go_package = "github.com/saitamau-maximum/meline/proto";

import "google/api/annotations.proto";

service UserService {
rpc Me(UserMeRequest) returns (UserMeResponse) {
option (google.api.http) = {
get : "/users/me"
};
}
}

message UserMeRequest {}

message UserMeResponse {
int32 id = 1;
string name = 2;
string image_url = 3;
}

0 comments on commit d276959

Please sign in to comment.