mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
15 lines
331 B
Go
15 lines
331 B
Go
//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
|
|
}
|