add signup method

This commit is contained in:
2026-06-29 00:46:57 +07:00
parent 3ec2853df6
commit bb2cb3a540
6 changed files with 300 additions and 19 deletions
+5 -1
View File
@@ -19,4 +19,8 @@ func (s *server) Ping(_ context.Context, _ *proto.PingReq) (*proto.PingRsp, erro
func (s *server) Echo(_ context.Context, req *proto.EchoReq) (*proto.EchoRsp, error) {
return &proto.EchoRsp{Text: req.Text}, nil
}
}
func (s *server) Signup(context.Context, *proto.SignupReq) (*proto.SignupRsp, error) {
panic("unimplemented")
}