mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-29 23:15:28 +08:00
16 lines
190 B
Go
16 lines
190 B
Go
package reader
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func Init() {
|
|
Params.Init()
|
|
}
|
|
|
|
func StartQueryNode(ctx context.Context, pulsarURL string) {
|
|
node := NewQueryNode(ctx, 0, pulsarURL)
|
|
|
|
node.Start()
|
|
}
|