mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
13 lines
185 B
Go
13 lines
185 B
Go
package queryservice
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/querypb"
|
|
)
|
|
|
|
type Client struct {
|
|
ctx context.Context
|
|
querypb.QueryServiceClient
|
|
}
|