Skip to content
This repository was archived by the owner on Nov 25, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions proto/chat/v1/chat.proto
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,16 @@

package chat.v1;

import "google/protobuf/timestamp.proto";

Check failure on line 5 in proto/chat/v1/chat.proto

View workflow job for this annotation

GitHub Actions / lint

Import "google/protobuf/timestamp.proto" is unused.

service ChatService {

Check failure on line 7 in proto/chat/v1/chat.proto

View workflow job for this annotation

GitHub Actions / breaking-change

Previously present RPC "Say" on service "ChatService" was deleted.
rpc Say(SayRequest) returns (SayResponse);
rpc say(SayRequest) returns (SayResponse);

Check failure on line 8 in proto/chat/v1/chat.proto

View workflow job for this annotation

GitHub Actions / lint

RPC name "say" should be PascalCase, such as "Say".
}

message SayRequest {
string sentence = 1;
}

message SayResponse {

Check failure on line 15 in proto/chat/v1/chat.proto

View workflow job for this annotation

GitHub Actions / breaking-change

Previously present field "2" with name "responded_at" on message "SayResponse" was deleted.
string sentence = 1;
google.protobuf.Timestamp responded_at = 2;
}
Loading