milvus/internal/indexnode/interface.go

14 lines
367 B
Go

package indexnode
import (
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
"github.com/zilliztech/milvus-distributed/internal/proto/indexpb"
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
)
type ServiceBase = typeutil.Component
type Interface interface {
BuildIndex(req *indexpb.BuildIndexCmd) (*commonpb.Status, error)
}