mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-01 08:28:10 +08:00
14 lines
325 B
Go
14 lines
325 B
Go
package indexnode
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/indexpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
)
|
|
|
|
type ServiceBase = typeutil.Component
|
|
|
|
type Interface interface {
|
|
ServiceBase
|
|
BuildIndex(req indexpb.BuildIndexRequest) (indexpb.BuildIndexResponse, error)
|
|
}
|