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
+18
View File
@@ -0,0 +1,18 @@
package app
import (
proto "pinned_message/proto"
"context"
)
type Server struct {
proto.UnimplementedpinnedMessageServer
}
func NewServer() *Server {
return &Server{}
}
func (s *Server) Ping(_ context.Context, _ *proto.PingReq) (*proto.PingRsp, error) {
return &proto.PingRsp{}, nil
}