package server
import (
context "context"
"gitee.com/timedb/wheatCache/storage/proto"
)
type server struct{}
func NewServer() proto.CommServerServer {
ser := &server{}
return ser
}
func (s *server) Commend(
ctx context.Context,
req *proto.CommendRequest,
) (*proto.CommendResponse, error) {
return nil, nil