mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-28 22:45:26 +08:00
12 lines
226 B
Go
12 lines
226 B
Go
package funcutil
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
|
)
|
|
|
|
type StateComponent interface {
|
|
GetComponentStates(ctx context.Context) (*internalpb2.ComponentStates, error)
|
|
}
|