generated from VLADIMIR/template
Initial commit
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package app
|
||||
|
||||
import (
|
||||
"context"
|
||||
proto "evening_detective_server/proto"
|
||||
)
|
||||
|
||||
type server struct {
|
||||
proto.UnsafeEveningDetectiveServerServer
|
||||
}
|
||||
|
||||
func NewServer() proto.EveningDetectiveServerServer {
|
||||
return &server{}
|
||||
}
|
||||
|
||||
func (s *server) Ping(_ context.Context, _ *proto.PingReq) (*proto.PingRsp, error) {
|
||||
return &proto.PingRsp{}, nil
|
||||
}
|
||||
|
||||
func (s *server) Echo(_ context.Context, req *proto.EchoReq) (*proto.EchoRsp, error) {
|
||||
return &proto.EchoRsp{Text: req.Text}, nil
|
||||
}
|
||||
Reference in New Issue
Block a user