mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 15:05:31 +08:00
21 lines
251 B
Go
21 lines
251 B
Go
package components
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func NewQueryNode(ctx context.Context) (*QueryNode, error) {
|
|
return nil, nil
|
|
}
|
|
|
|
type QueryNode struct {
|
|
}
|
|
|
|
func (ps *QueryNode) Run() error {
|
|
return nil
|
|
}
|
|
|
|
func (ps *QueryNode) Stop() error {
|
|
return nil
|
|
}
|