mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-06 17:18:35 +08:00
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()
|
|
}
|