seaweedfs/weed/mq/broker/broker_grpc_pub_follow.go

13 lines
372 B
Go
Raw Normal View History

2024-03-11 05:34:28 +08:00
package broker
import (
"context"
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/pb/mq_pb"
)
2024-03-17 01:51:47 +08:00
func (b *MessageQueueBroker) PublishFollowMe(c context.Context, request *mq_pb.PublishFollowMeRequest) (*mq_pb.PublishFollowMeResponse, error) {
2024-03-11 05:34:28 +08:00
glog.V(0).Infof("PublishFollowMe %v", request)
2024-03-18 13:27:13 +08:00
return &mq_pb.PublishFollowMeResponse{}, nil
2024-03-11 05:34:28 +08:00
}