13 lines
223 B
Go
13 lines
223 B
Go
package 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
|
|
}
|