This repository has been archived on 2026-01-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Game/Server/scene/grpc_server/server.go
2025-06-29 10:39:00 +08:00

13 lines
228 B
Go

package grpc_server
import (
"common/log"
"common/proto/gen/common"
"context"
)
func (s *Server) SendMessage(ctx context.Context, req *common.Empty) (*common.Empty, error) {
log.Infof("未实现函数")
return nil, nil
}