blob: f78f3ee09206d04c3a10f7fac57af493ad4564ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//go:build !elastic
// +build !elastic
package command
import (
"github.com/chrislusf/seaweedfs/weed/pb/filer_pb"
)
func sendToElasticSearchFunc(servers string, esIndex string) (func(resp *filer_pb.SubscribeMetadataResponse) error, error) {
return func(resp *filer_pb.SubscribeMetadataResponse) error {
return nil
}, nil
}
|