Initial commit

This commit is contained in:
2026-03-25 17:55:17 +00:00
commit 05a68caa87
12 changed files with 650 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
syntax = "proto3";
package crabs.pinned_message;
import "google/api/annotations.proto";
option go_package = "pkg/proto";
service pinnedMessage {
rpc Ping(PingReq) returns (PingRsp) {
option (google.api.http) = {
get: "/ping"
};
}
}
message PingReq {}
message PingRsp {}