mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-01 00:15:30 +08:00
12 lines
158 B
Go
12 lines
158 B
Go
package reader
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
func StartQueryNode(ctx context.Context, pulsarURL string) {
|
|
node := NewQueryNode(ctx, 0, pulsarURL)
|
|
|
|
node.Start()
|
|
}
|