mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
32445dd02b
Signed-off-by: neza2017 <yefu.chen@zilliz.com>
16 lines
164 B
Go
16 lines
164 B
Go
package querynode
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func Init() {
|
|
Params.Init()
|
|
}
|
|
|
|
func StartQueryNode(ctx context.Context) {
|
|
node := NewQueryNode(ctx, 0)
|
|
|
|
node.Start()
|
|
}
|