mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 09:38:39 +08:00
8 lines
142 B
Go
8 lines
142 B
Go
package allocator
|
|
|
|
import "github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
|
|
type Allocator interface {
|
|
AllocID() (typeutil.UniqueID, error)
|
|
}
|