mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-08 01:58:34 +08:00
13 lines
179 B
Go
13 lines
179 B
Go
package querynode
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/querypb"
|
|
)
|
|
|
|
type Client struct {
|
|
ctx context.Context
|
|
querypb.QueryNodeClient
|
|
}
|